Some checks failed
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Failing after 15m47s
13 lines
345 B
C#
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; }
|
|
}
|
|
}
|