LANCommander/LANCommander.Steam/Models/SteamCmdNet/SupportedLanguage.cs

15 lines
370 B
C#
Raw Permalink Normal View History

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
[JsonPropertyName("full_audio")]
public string? FullAudio { get; set; }
2026-05-07 17:54:45 -05:00
[JsonPropertyName("subtitles")]
public string? Subtitles { get; set; }
}