Add project files.

This commit is contained in:
pkus
2025-01-24 13:37:01 +01:00
parent ee70a3c8af
commit ed726eea09
94 changed files with 4591 additions and 0 deletions

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