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 QrValues { get; set; } } public class QrValue { public string Value { get; set; } public string Item { get; set; } }