Files
SteUP_Dotnet/SteUp.Shared/Core/BarcodeReader/Dto/BarcodeScanDto.cs
T
2026-07-22 14:50:09 +02:00

10 lines
253 B
C#

using SteUp.Shared.Core.BarcodeReader.Enum;
namespace SteUp.Shared.Core.BarcodeReader.Dto;
public class BarcodeScanDto
{
public string? StringValue { get; set; }
public BarcodeType? Type { get; set; }
public string? Name { get; set; }
}