15 lines
488 B
C#
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;
|
|
}
|
|
}
|