10 lines
241 B
C#
10 lines
241 B
C#
|
|
using System.Collections.Generic;
|
||
|
|
using System.Text.Json.Serialization;
|
||
|
|
|
||
|
|
namespace LANCommander.Steam.Models.SteamCmdNet;
|
||
|
|
|
||
|
|
public class LocalizedImageMap
|
||
|
|
{
|
||
|
|
[JsonExtensionData]
|
||
|
|
public Dictionary<string, object>? Values { get; set; }
|
||
|
|
}
|