TradeProfitItem.cs 316 B

123456789101112
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem
  4. {
  5. public class TradeProfitItem
  6. {
  7. public decimal TradeProfit { get; set; }
  8. public string TradeMonth { get; set; }
  9. public string TradeMonthValue { get; set; }
  10. public DateTime? CreateDate { get; set; }
  11. }
  12. }