11 lines
312 B
C#
11 lines
312 B
C#
namespace SytelineSaAppEfDataModel.Dtos;
|
|
|
|
public class EdiLogDto
|
|
{
|
|
public int Id { get; set; }
|
|
public string ProcessName { get; set; }
|
|
public string ConfigurationName { get; set; }
|
|
public int Status { get; set; }
|
|
public string LogText { get; set; }
|
|
public DateTime Date { get; set; }
|
|
} |