Files
FA_WEB/SytelineSaAppEfDataModel/Entities/EdiCustomerOrderImport.cs
Piotr Kus 6139ce97d7 * Added new Entities and Dtos
* Mapping new classes
* Added new services and Controllers in API
2025-08-07 06:46:43 +02:00

12 lines
376 B
C#

namespace SytelineSaAppEfDataModel.Entities;
public class EdiCustomerOrderImport
{
public int Id { get; set; }
public int ScheduleOrderId { get; set; }
public DateTime LastUpdateDate { get; set; }
public DateTime CreatedDate { get; set; }
public string Status { get; set; }
public string LogData { get; set; }
public int ItemsCount { get; set; }
}