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

31 lines
546 B
C#
Raw Normal View History

2023-03-03 19:25:33 +00:00
/* AccountInfo.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:
*/
2024-05-21 20:15:19 +01:00
namespace SPT.Launcher
2023-03-03 19:25:33 +00:00
{
public class AccountInfo
{
public string id;
public string nickname;
public string username;
public string password;
public bool wipe;
public string edition;
public AccountInfo()
{
id = "";
nickname = "";
username = "";
password = "";
wipe = false;
edition = "";
}
}
}