Add project files.
This commit is contained in:
27
SytelineSaAppEfDataModel/Dtos/ErrorLogDto.cs
Normal file
27
SytelineSaAppEfDataModel/Dtos/ErrorLogDto.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user