23 lines
721 B
C#
23 lines
721 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 DateTime KeySaveDate { get; set; }
|
|
public bool Vip { get; set; }
|
|
public bool Ban { get; set; }
|
|
public int Point { get; set; }
|
|
public string LevelList { get; set; }
|
|
public List<EncodedCardGroup> EncodedCardGroups { get; set; }
|
|
}
|
|
} |