DB added and more
This commit is contained in:
22
TOOHUCardAPI/Data/Models/User.cs
Normal file
22
TOOHUCardAPI/Data/Models/User.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
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<EncodedCardGroup> EncodedCardGroups { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user