using System; using System.Collections.Generic; namespace MySystem { public class Performance { public decimal TradeAmount { get; set; } public decimal CardAmount { get; set; } public decimal QrPayAmount { get; set; } public int MakerCount { get; set; } public int AddMakerCount { get; set; } public int ActMerchantCount { get; set; } public int AddActMerchantCount { get; set; } } }