Files
SPT-Server-Build/Core/Models/Eft/Launcher/LoginRequestData.cs
T

12 lines
271 B
C#

using System.Text.Json.Serialization;
namespace Core.Models.Eft.Launcher;
public class LoginRequestData
{
[JsonPropertyName("username")]
public string? Username { get; set; }
[JsonPropertyName("password")]
public string? Password { get; set; }
}