Files
WorkFlowCheck/src/WorkFlowCheck.MAUI/DataLayer/Entities/CheckListHeader.cs
T

31 lines
1.0 KiB
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WorkFlowCheck.Common.Enums;
namespace WorkFlowCheck.MAUI.DataLayer.Entities
{
public class CheckListHeader
{
[Key]
public int Id { get; set; }
public int CheckListTemplateHeaderId { get; set; }
public virtual CheckListTemplateHeader? CheckListTemplateHeader { get; set; }
public CheckStatus CheckStatus { get; set; }
public DateTime DateExecution { get; set; }
public int UserId { get; set; }
public string ShortName { get; set; } = null!;
public string Description { get; set; } = null!;
public string DocumentNumber { get; set; } = null!;
public Guid GuidNumber { get; set; }
public bool IsStorno { get; set; }
public bool IsEditable { get; set; }
public virtual ICollection<CheckListRow> CheckListRows { get; set; } = new List<CheckListRow>();
}
}