This commit is contained in:
Kalarumeth
2022-10-27 18:53:21 +02:00
parent a852e6095f
commit d6e210aeab
6 changed files with 270 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
using DocumentFormat.OpenXml.Drawing;
namespace console_lps.Repository;
public class LabelItem
{
public short TotalLabels { get; set; }
public string ItemId { get; set; }
public string ItemDescription { get; set; }
List<QrValue> QrValues { get; set; }
}
public class QrValue
{
public string Value { get; set; }
public string Item { get; set; }
}