Advertisement
Guest User

Untitled

a guest
Jul 16th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.Linq;
  5. using System.Threading.Tasks;
  6.  
  7. namespace DBfeed.Models
  8. {
  9. public class matches
  10. {
  11. public int matchid { get; set; }
  12. public int duration { get; set; }
  13. public int start_time { get; set; }
  14. public int radiant_team_id { get; set; }
  15. public string radiant_name { get; set; }
  16. public int dire_team_id { get; set; }
  17. public string dire_name { get; set; }
  18. public int leagueid { get; set; }
  19. public string league_name { get; set; }
  20. public int series_id { get; set; }
  21. public int series_type { get; set; }
  22. public int radiant_score { get; set; }
  23. public bool radiant_win { get; set; }
  24. public DateTime Datetime { get; set; }
  25. public bool processEntry { get; set; }
  26. [Key]
  27. public int entry_id { get; set; }
  28. }
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement