UploadData.cs 537 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace WebApplet.Models
  6. {
  7. public class UploadData
  8. {
  9. public string MId { get; set; }
  10. public string Macnum { get; set; }
  11. public string Type { get; set; }
  12. public string X { get; set; }
  13. public string Y { get; set; }
  14. public string T { get; set; }
  15. public string MDP { get; set; }
  16. public DateTime STime { get; set; }
  17. public string UserId { get; set; }
  18. }
  19. }