Files
WorkFlowCheck/src/WorkFlowCheck.DL/Entities/CheckPoint.cs
T

28 lines
877 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WorkFlowCheck.DL.Interfaces;
namespace WorkFlowCheck.DL.Entities
{
public class CheckPoint : ISoftDeletableEntity, IAuditableEntity
{
public int Id { get; set; }
public string ShortName { get; set; }
public string Code { get; set; }
public bool IsEnabled { get; set; }
public bool IsDeleted { get; set; }
public DateTime LastModAt { get; set; }
public string LastModBy { get; set; } = null!;
public DateTime CreatedAt { get; set; }
public string CreatedBy { get; set; } = null!;
public int RoleId { get; set; }
public virtual ICollection<CheckListTemplateRow> CheckListTemplateRows { get; set; } = new List<CheckListTemplateRow>();
}
}