13 lines
299 B
C#

using ElectronicsShopContracts.ViewModels;
namespace ElectronicsShopBusinessLogic.OfficePackage.HelperModels
{
public class WordInfoClient
{
public string Title { get; set; } = string.Empty;
public List<ReportProductsViewModel>? Products { get; set; } = new();
}
}