31 lines
1.1 KiB
C#
31 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace TOOHUCardAPI.Data.Models
|
|
{
|
|
public class User
|
|
{
|
|
[Key]
|
|
public long 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 DateTime LastDailyLoginBonus { get; set; }
|
|
public int PowerMaxTotal { get; set; }
|
|
public string PetModel { get; set; }
|
|
public string PetEffect { get; set; }
|
|
public string Username { get; set; }
|
|
public long AccountId { get; set; }
|
|
public List<EncodedCardGroup> EncodedCardGroups { get; set; }
|
|
public List<CardLevel> CardLevels { get; set; }
|
|
}
|
|
} |