Files
FA_WEB/SytelineSaAppEfDataModel/Dtos/ErrorLogDto.cs
2025-01-24 13:37:01 +01:00

28 lines
878 B
C#

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; }
}
}