Implentata scansione barcode e lista articoli nel form scheda
This commit is contained in:
18
SteUp.Shared/Core/Dto/ArticoliInGrigliaDto.cs
Normal file
18
SteUp.Shared/Core/Dto/ArticoliInGrigliaDto.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace SteUp.Shared.Core.Dto;
|
||||
|
||||
public class ArticoliInGrigliaDto
|
||||
{
|
||||
[JsonPropertyName("codMart")]
|
||||
public string CodMart { get; set; } = string.Empty;
|
||||
|
||||
[JsonPropertyName("descrizione")]
|
||||
public string Descrizione { get; set; } = string.Empty;
|
||||
|
||||
[JsonPropertyName("barcode")]
|
||||
public string Barcode { get; set; } = string.Empty;
|
||||
|
||||
[JsonPropertyName("codMsgr")]
|
||||
public string CodMsgr { get; set; } = string.Empty;
|
||||
}
|
||||
Reference in New Issue
Block a user