Files
WorkFlowCheck/src/WorkFlowCheck.DL/Entities/RoleCheckListTemplateHeader.cs
T
2025-03-31 11:55:24 +02:00

15 lines
488 B
C#

using System.ComponentModel.DataAnnotations.Schema;
namespace WorkFlowCheck.DL.Entities
{
public class RoleCheckListTemplateHeader
{
public int Id { get; set; }
public int RoleId { get; set; }
public virtual Role Role { get; set; } = null!;
public int CheckListTemplateHeaderId { get; set; }
public virtual CheckListTemplateHeader CheckListTemplateHeader { get; set; } = null!;
public bool Enabled { get; set; } = true;
}
}