using BusinessERP.Models.CompanyInfoViewModel; using BusinessERP.Models.CustomerInfoViewModel; using BusinessERP.Models.EmailConfigViewModel; using BusinessERP.Models.PaymentModeHistoryViewModel; using BusinessERP.Models.PurchasesPaymentDetailViewModel; using System.Collections.Generic; namespace BusinessERP.Models.PurchasesPaymentViewModel { public class PurchasesPaymentReportViewModel { public PurchasesPaymentCRUDViewModel PurchasesPaymentCRUDViewModel { get; set; } public List listPurchasesPaymentDetailCRUDViewModel { get; set; } public List listPaymentModeHistoryCRUDViewModel { get; set; } public CustomerInfoCRUDViewModel CustomerInfoCRUDViewModel { get; set; } public CompanyInfoCRUDViewModel CompanyInfoCRUDViewModel { get; set; } public SendEmailViewModel SendEmailViewModel { get; set; } } }