mirror of
https://github.com/sp-tarkov/launcher.git
synced 2025-02-13 09:50:43 -05:00
25 lines
483 B
C#
25 lines
483 B
C#
/* ChangeRequestData.cs
|
|
* License: NCSA Open Source License
|
|
*
|
|
* Copyright: SPT
|
|
* AUTHORS:
|
|
*/
|
|
|
|
|
|
namespace SPT.Launcher
|
|
{
|
|
public struct ChangeRequestData
|
|
{
|
|
public string username;
|
|
public string password;
|
|
public string change;
|
|
|
|
public ChangeRequestData(string username, string password, string change)
|
|
{
|
|
this.username = username;
|
|
this.password = password;
|
|
this.change = change;
|
|
}
|
|
}
|
|
}
|