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

12 lines
280 B
C#

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