DmcResult.cs 666 B

1234567891011121314151617181920212223242526272829303132
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace XdCxRhDW.Core.Api
  8. {
  9. public class DmcResult
  10. {
  11. public DmcResult()
  12. {
  13. }
  14. public DmcResult(int start, int length, string userName,int times)
  15. {
  16. Start = start;
  17. Length = length;
  18. UserName = userName;
  19. Times = times;
  20. }
  21. public int Start { get; set; }
  22. public int Length { get; set; }
  23. public string UserName { get; set; }
  24. public int Times { get; set; }//ms
  25. }
  26. }