0
0
mirror of https://github.com/sp-tarkov/launcher.git synced 2025-02-13 09:50:43 -05:00

24 lines
586 B
C#
Raw Normal View History

2023-03-03 19:25:33 +00:00
/* ServerProfileInfo.cs
* License: NCSA Open Source License
*
2024-05-21 20:15:19 +01:00
* Copyright: SPT
2023-03-03 19:25:33 +00:00
* AUTHORS:
* waffle.lord
*/
2024-05-21 20:15:19 +01:00
namespace SPT.Launcher.Models.SPT
2023-03-03 19:25:33 +00:00
{
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; }
2024-05-21 20:15:19 +01:00
public SPTData SPTData { get; set; }
2023-03-03 19:25:33 +00:00
}
}