Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- namespace [redacted]
- {
- public class MatchInfo
- {
- [Key] public int MatchId { get; set; }
- public User StarterUser { get; set; }
- [MaxLength(1)] public int IsAlive { get; set; }
- public User CurrentTurnUser { get; set; }
- public User WinnerUser { get; set; }
- public int WinnerPoints { get; set; }
- public int CurrentTurnNum { get; set; }
- public List<Player> Players { get; set; }
- [MaxLength(64)] public string RefToken { get; set; }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment