This commit is contained in:
2022-06-08 18:54:58 +03:00
parent c66ff52d94
commit 531edcd3cc
55 changed files with 2253 additions and 2360 deletions

View File

@@ -1,16 +1,9 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CMD_LevelingSystem;
namespace CMD_LevelingSystem
public class User
{
public class User
{
public string userID { get; set; }
public int CurrentLevel { get; set; }
public Int64 CurrentEXP { get; set; }
public Int64 RequiredEXPToLevelUp { get; set; }
}
public string userID { get; set; }
public int CurrentLevel { get; set; }
public long CurrentEXP { get; set; }
public long RequiredEXPToLevelUp { get; set; }
}