Files
SPT-Server-Build/Core/Models/Eft/Profile/ConnectResponse.cs
T
2025-01-07 06:44:41 -05:00

18 lines
434 B
C#

using System.Text.Json.Serialization;
namespace Core.Models.Eft.Profile;
public class 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; }
}