12 lines
404 B
C#
12 lines
404 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace File_Folder_Helper.Models;
|
|
|
|
internal record H2HexColor(string H2,
|
|
string HexColor);
|
|
|
|
[JsonSourceGenerationOptions(WriteIndented = true, DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingNull)]
|
|
[JsonSerializable(typeof(H2HexColor))]
|
|
internal partial class H2PatternMatchesSourceGenerationContext : JsonSerializerContext
|
|
{
|
|
} |