Remove .Any
H2 Records
This commit is contained in:
14
Models/H2WithCheckboxes.cs
Normal file
14
Models/H2WithCheckboxes.cs
Normal 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
|
||||
{
|
||||
}
|
Reference in New Issue
Block a user