phronCare/Domain/Dtos/Stock/ProductImportPreviewDto.cs

20 lines
798 B
C#
Raw Normal View History

2025-07-14 16:16:05 -03:00
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;
2025-08-18 00:47:37 -03:00
public string RegulatoryCode { get; set; } = string.Empty;
2025-07-14 16:16:05 -03:00
public string? ErrorMessage { get; set; }
public bool HasError => !string.IsNullOrWhiteSpace(ErrorMessage);
}
}