parsing-packets/Models/HelperPhysicalAddressDictionarySourceGenerationContext.cs
2024-02-03 17:30:01 -07:00

9 lines
292 B
C#

using System.Text.Json.Serialization;
namespace Parsing_Packets.Models;
[JsonSourceGenerationOptions(WriteIndented = true)]
[JsonSerializable(typeof(Dictionary<string, List<string>>))]
internal partial class HelperPhysicalAddressDictionarySourceGenerationContext : JsonSerializerContext
{
}