API és endpoint kiegészítése
This commit is contained in:
@@ -1,17 +1,20 @@
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using WorkFlowCheck.DL.Interfaces;
|
||||
using WorkFlowCheck.DL.Interfaces;
|
||||
|
||||
namespace WorkFlowCheck.DL.Entities
|
||||
{
|
||||
public class CheckListTemplateHeader:ISoftDeletableEntity,IAuditableEntity
|
||||
public class CheckListTemplateHeader : ISoftDeletableEntity, IAuditableEntity
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string ShortName { get; set; } = null!;
|
||||
public string Description { get; set; } = null!;
|
||||
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 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 virtual ICollection<CheckListTemplateRow> CheckListTemplateRows { get; set; } = new List<CheckListTemplateRow>();
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user