Moved to json file format

This commit is contained in:
2022-06-04 18:55:29 +03:00
parent 8fcd33e734
commit 0b6b57cc84
39 changed files with 501 additions and 1712 deletions

View File

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