mirror of
https://github.com/sp-tarkov/launcher.git
synced 2025-02-13 09:50:43 -05:00
24 lines
586 B
C#
24 lines
586 B
C#
/* ServerProfileInfo.cs
|
|
* License: NCSA Open Source License
|
|
*
|
|
* Copyright: SPT
|
|
* AUTHORS:
|
|
* waffle.lord
|
|
*/
|
|
|
|
namespace SPT.Launcher.Models.SPT
|
|
{
|
|
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 SPTData SPTData { get; set; }
|
|
}
|
|
}
|