0
0
mirror of https://github.com/sp-tarkov/launcher.git synced 2025-02-13 09:50:43 -05:00
2023-03-03 19:25:33 +00:00

24 lines
598 B
C#

/* ServerProfileInfo.cs
* License: NCSA Open Source License
*
* Copyright: Merijn Hendriks
* AUTHORS:
* waffle.lord
*/
namespace Aki.Launcher.Models.Aki
{
public class ServerProfileInfo
{
public string username { get; set; }
public string nickname { get; set; }
public string side { get; set; }
public int currlvl { get; set; }
public long currexp { get; set; }
public long prevexp { get; set; }
public long nextlvl { get; set; }
public int maxlvl { get; set; }
public AkiData akiData { get; set; }
}
}