Performance.cs 454 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem
  4. {
  5. public class Performance
  6. {
  7. public decimal TradeAmount { get; set; }
  8. public decimal CardAmount { get; set; }
  9. public decimal QrPayAmount { get; set; }
  10. public int MakerCount { get; set; }
  11. public int AddMakerCount { get; set; }
  12. public int ActMerchantCount { get; set; }
  13. public int AddActMerchantCount { get; set; }
  14. }
  15. }