2026-02-07 18:58:03 -06:00
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace LANCommander.Steam.Models.SteamCmdNet;
|
|
|
|
|
|
|
|
|
|
public sealed class SupportedLanguage
|
|
|
|
|
{
|
|
|
|
|
[JsonPropertyName("supported")]
|
|
|
|
|
public string? Supported { get; set; }
|
2026-05-07 17:54:45 -05:00
|
|
|
|
2026-02-07 18:58:03 -06:00
|
|
|
[JsonPropertyName("full_audio")]
|
|
|
|
|
public string? FullAudio { get; set; }
|
2026-05-07 17:54:45 -05:00
|
|
|
|
|
|
|
|
[JsonPropertyName("subtitles")]
|
|
|
|
|
public string? Subtitles { get; set; }
|
2026-02-07 18:58:03 -06:00
|
|
|
}
|