file-folder-helper/Models/H2WithCheckboxes.cs
2023-09-27 23:05:40 -07:00

14 lines
515 B
C#

using System.Text.Json.Serialization;
namespace File_Folder_Helper.Models;
internal record H2WithCheckboxes(int Completed,
string H2,
int NotCompleted,
int Total);
[JsonSourceGenerationOptions(WriteIndented = true, DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingNull)]
[JsonSerializable(typeof(H2WithCheckboxes))]
internal partial class H2WithCheckboxesSourceGenerationContext : JsonSerializerContext
{
}