Files
SPT-Server-Build/Libraries/Core/Models/Eft/Profile/ConnectResponse.cs
T
2025-02-07 19:36:17 +00:00

35 lines
560 B
C#

using System.Text.Json.Serialization;
namespace Core.Models.Eft.Profile;
public record ConnectResponse
{
[JsonPropertyName("backendUrl")]
public string? BackendUrl
{
get;
set;
}
[JsonPropertyName("name")]
public string? Name
{
get;
set;
}
[JsonPropertyName("editions")]
public List<string>? Editions
{
get;
set;
}
[JsonPropertyName("profileDescriptions")]
public Dictionary<string, string>? ProfileDescriptions
{
get;
set;
}
}