Remove .Any

H2 Records
This commit is contained in:
2023-09-27 23:05:40 -07:00
parent 4ba2a42ed1
commit f810af3ebe
13 changed files with 307 additions and 61 deletions

View File

@ -0,0 +1,14 @@
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
{
}