mirror of
https://github.com/AssetRipper/AssetRipper.git
synced 2025-12-11 20:15:29 +01:00
10 lines
274 B
C#
10 lines
274 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace AssetRipper.Tools.CabMapGenerator;
|
|
|
|
[JsonSourceGenerationOptions(WriteIndented = true)]
|
|
[JsonSerializable(typeof(Dictionary<string, string>))]
|
|
internal partial class DictionarySerializerContext : JsonSerializerContext
|
|
{
|
|
}
|