8 lines
203 B
C#
8 lines
203 B
C#
namespace SteUp.Shared.Core.BarcodeReader.Dto;
|
|
|
|
public class BarcodeScanDto
|
|
{
|
|
public string? StringValue { get; set; }
|
|
public string? Type { get; set; }
|
|
public string? Name { get; set; }
|
|
} |