Fix scanner barcode per i plu

This commit is contained in:
2026-07-22 14:50:09 +02:00
parent 74b671586f
commit 5ec7468b1c
4 changed files with 133 additions and 8 deletions
@@ -1,8 +1,10 @@
namespace SteUp.Shared.Core.BarcodeReader.Dto;
using SteUp.Shared.Core.BarcodeReader.Enum;
namespace SteUp.Shared.Core.BarcodeReader.Dto;
public class BarcodeScanDto
{
public string? StringValue { get; set; }
public string? Type { get; set; }
public BarcodeType? Type { get; set; }
public string? Name { get; set; }
}