ControlRecordPage.cs 407 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace NEIntelligentControl2.Models.Windturbine
  7. {
  8. public class ControlRecordPage
  9. {
  10. public int Total { set; get; }
  11. public List<ControlRecord> DataList { set; get; }
  12. public int PageIndex { set; get; }
  13. public int PageSize { set; get; }
  14. }
  15. }