using System; using System.Collections.Generic; using System.Text; using Newtonsoft.Json; using System.ComponentModel.DataAnnotations.Schema; using System.ComponentModel.DataAnnotations; namespace Kehyeedra3.Services.Models { public class Mining { [Key] public ulong Id { get; set; } = 0; public ulong Xp { get; set; } = 50; public ulong TXp { get; set; } = 0; public ulong Lvl { get; set; } = 0; public ulong LastMine { get; set; } = 0; } }