LANCommander/LANCommander.Steam/Models/SteamCmdNet/SupportedLanguage.cs
2026-05-07 17:54:45 -05:00

15 lines
No EOL
370 B
C#

using System.Text.Json.Serialization;
namespace LANCommander.Steam.Models.SteamCmdNet;
public sealed class SupportedLanguage
{
[JsonPropertyName("supported")]
public string? Supported { get; set; }
[JsonPropertyName("full_audio")]
public string? FullAudio { get; set; }
[JsonPropertyName("subtitles")]
public string? Subtitles { get; set; }
}