10 lines
No EOL
241 B
C#
10 lines
No EOL
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; }
|
|
} |