JsonSerialize javítása

This commit is contained in:
2025-04-08 21:05:12 +02:00
parent 7720f4944a
commit a201e2028e
3 changed files with 18 additions and 10 deletions
@@ -11,6 +11,7 @@ namespace WorkFlowCheck.MAUI.DataLayer.Entities
public int Id { get; set; }
public string ShortName { get; set; } = null!;
public string Code { get; set; } = null!;
public bool IsEnabled { get; set; }
public virtual ICollection<CheckListTemplateRow> CheckListTemplateRows { get; set; } = new List<CheckListTemplateRow>();
}