SyncCheckListTemplates implementálása

This commit is contained in:
2025-02-19 16:23:34 +01:00
parent 790f92a940
commit 5aae8fd067
4 changed files with 51 additions and 2 deletions
@@ -11,6 +11,7 @@ namespace WorkFlowCheck.MAUI.DataLayer.Entities
public int Id { get; set; }
public string ShortName { get; set; } = null!;
public string Description { get; set; } = null!;
public virtual ICollection<CheckListTemplateRow> CheckListTemplateRows { get; set; } = new List<CheckListTemplateRow>();
}
}