17 lines
375 B
C#
17 lines
375 B
C#
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; }
|
|
} |