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