You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
506 B
19 lines
506 B
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;
|
|
}
|
|
}
|
|
|