12345678910111213141516171819202122232425262728293031323334 |
- using System.Collections.Generic;
- using GxPress.Result.HumanAffairs;
- namespace GxPress.Result.sell
- {
-
-
-
- public class SellResult
- {
-
-
-
- public int MonthSellAmount { get; set; }
-
-
-
- public int MonthSellCount { get; set; }
-
-
-
- public int ComparedMonthAmount { get; set; }
-
-
-
- public int ComparedMonthCount { get; set; }
-
-
-
- public List<HumanAffairsChartData> HumanAffairsChartDataResult { get; set; }
-
- }
- }
|