TrendChartParams.cs 352 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Lottomat.Application.Entity.GalleryManage
  7. {
  8. public class TrendChartParams
  9. {
  10. /// <summary>
  11. /// 栏目value 彩票类别
  12. /// </summary>
  13. public string LotteryType { get; set; }
  14. }
  15. }