phronCare/Domain/Dtos/Stock/ProductImportPreviewDto.cs
Leandro Hernan Rojas 369190695b
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 26m25s
Add Massive Import Products
2025-07-14 16:16:05 -03:00

19 lines
730 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? ErrorMessage { get; set; }
public bool HasError => !string.IsNullOrWhiteSpace(ErrorMessage);
}
}