2026-02-07 18:58:03 -06:00
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace LANCommander.Steam.Models.SteamCmdNet;
|
|
|
|
|
|
|
|
|
|
public sealed class LibraryAssets
|
|
|
|
|
{
|
|
|
|
|
[JsonPropertyName("library_capsule")]
|
|
|
|
|
public string? Capsule { get; set; }
|
2026-05-07 17:54:45 -05:00
|
|
|
|
|
|
|
|
[JsonPropertyName("library_header")]
|
|
|
|
|
public string? Header { get; set; }
|
|
|
|
|
|
2026-02-07 18:58:03 -06:00
|
|
|
[JsonPropertyName("library_hero")]
|
|
|
|
|
public string? Hero { get; set; }
|
2026-05-07 17:54:45 -05:00
|
|
|
|
|
|
|
|
[JsonPropertyName("library_hero_blur")]
|
|
|
|
|
public string? HeroBlur { get; set; }
|
|
|
|
|
|
2026-02-07 18:58:03 -06:00
|
|
|
[JsonPropertyName("library_logo")]
|
|
|
|
|
public string? Logo { get; set; }
|
2026-05-07 17:54:45 -05:00
|
|
|
|
2026-02-07 18:58:03 -06:00
|
|
|
[JsonPropertyName("logo_position")]
|
|
|
|
|
public LogoPosition? LogoPosition { get; set; }
|
|
|
|
|
}
|