using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace EMIS.ViewModel.FeeManage { public class StudentFeeStatisticTotalView { public int? TotalRegistCount { get; set; } public decimal? TotalRegistAmount { get; set; } public int? TotalPaidCount { get; set; } public decimal? TotalPaidAmount { get; set; } public int? TotalRefundCount { get; set; } public decimal? TotalRefundAmount { get; set; } public int? TotalRefundApplyCount { get; set; } public decimal? TotalRefundApplyAmount { get; set; } public int? TotalRefundingCount { get; set; } public decimal? TotalRefundingAmount { get; set; } } }