mirror of
https://github.com/sp-tarkov/launcher.git
synced 2025-02-13 09:50:43 -05:00
32 lines
577 B
C#
32 lines
577 B
C#
![]() |
/* AccountInfo.cs
|
||
|
* License: NCSA Open Source License
|
||
|
*
|
||
|
* Copyright: Merijn Hendriks
|
||
|
* AUTHORS:
|
||
|
* Merijn Hendriks
|
||
|
*/
|
||
|
|
||
|
|
||
|
namespace Aki.Launcher
|
||
|
{
|
||
|
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 = "";
|
||
|
}
|
||
|
}
|
||
|
}
|