phronCare/Domain/Dtos/Stock/Gs1ScanResult.cs
Leandro Hernan Rojas 1c4c241266
Some checks failed
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Failing after 15m47s
Add StockItemModal v1
2025-08-18 00:47:37 -03:00

13 lines
345 B
C#

namespace Domain.Dtos.Stock
{
public class Gs1ScanResult
{
public string? Gtin { get; set; }
public string? Lot { get; set; }
public DateTime? ExpirationDate { get; set; }
public string? Serial { get; set; }
public string? Raw { get; set; }
public string? Variant { get; set; }
}
}