using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; namespace TOOHUCardAPI.Data.Models { public class User { [Key] public string SteamId { get; set; } public int MaxWave { get; set; } public int MaxTeamWave { get; set; } public int PetLevel { get; set; } public DateTime EndTime { get; set; } public int KeyTotal { get; set; } public DateTime KeySaveDate { get; set; } public bool Vip { get; set; } public int Point { get; set; } public string LevelList { get; set; } public List EncodedCardGroups { get; set; } } }