Kis adatbázis és miegymás
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
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; } = false;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user