Files
API/TOOHUCardAPI/Data/Models/User.cs

25 lines
817 B
C#

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 int KeyUseCount { get; set; }
public DateTime KeySaveDate { get; set; }
public bool Vip { get; set; }
public bool Ban { get; set; }
public int Point { get; set; }
public DateTime LastFirstWin { get; set; }
public string LevelList { get; set; }
public List<EncodedCardGroup> EncodedCardGroups { get; set; }
}
}