Some checks failed
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Failing after 15m47s
20 lines
798 B
C#
20 lines
798 B
C#
namespace Domain.Dtos.Stock
|
|
{
|
|
public class ProductImportPreviewDto
|
|
{
|
|
public string FactoryCode { get; set; } = string.Empty;
|
|
public string Name { get; set; } = string.Empty;
|
|
public string Description { get; set; } = string.Empty;
|
|
public int ProductType { get; set; }
|
|
public int TraceabilityType { get; set; }
|
|
public string DivisionCode { get; set; } = string.Empty;
|
|
public string UnitCode { get; set; } = string.Empty;
|
|
public bool PlusProcess { get; set; }
|
|
public string ExternalCode { get; set; } = string.Empty;
|
|
public string RegulatoryCode { get; set; } = string.Empty;
|
|
public string? ErrorMessage { get; set; }
|
|
public bool HasError => !string.IsNullOrWhiteSpace(ErrorMessage);
|
|
}
|
|
|
|
}
|