- using System;
- using System.Collections.Generic;
- namespace MySystem
- {
- public class TradeProfitItem
- {
- public decimal TradeProfit { get; set; }
- public string TradeMonth { get; set; }
- public string TradeMonthValue { get; set; }
- public DateTime? CreateDate { get; set; }
- }
- }
|