using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SytelineSaAppEfDataModel.Dtos { public class ErrorLogDto { public string TrxNum { get; set; } public short Seq { get; set; } public int LineNum { get; set; } public int ReleaseNum { get; set; } public DateTime? ErrDate { get; set; } public short? ErrNum { get; set; } public string ErrMsg { get; set; } public string TrxCode { get; set; } public bool NoteExistsFlag { get; set; } public DateTime RecordDate { get; set; } public Guid RowPointer { get; set; } public string CreatedBy { get; set; } public string UpdatedBy { get; set; } public DateTime CreateDate { get; set; } public bool InWorkflow { get; set; } } }