Player.cs 579 B

123456789101112131415161718192021
  1. using System.ComponentModel.DataAnnotations;
  2. namespace Warhammer.Models
  3. {
  4. public partial class Player
  5. {
  6. [Key]
  7. public int Id { get; set; }
  8. public int Experience { get; set; }
  9. public int CC { get; set; }
  10. public int CT { get; set; }
  11. public int F { get; set; }
  12. public int E { get; set; }
  13. public int AG { get; set; }
  14. public int INT { get; set; }
  15. public int PER { get; set; }
  16. public int FM { get; set; }
  17. public int SOC { get; set; }
  18. public int MF { get; set; }
  19. }
  20. }