CourseWorkElectronicsShop/ElectronicsShop/ElectronicsShopBusinessLogic/OfficePackage/HelperModels/WordInfoClient.cs
Илья Федотов 93e0fe9524 Pdf Report Client
2024-07-23 20:29:10 +04:00

12 lines
295 B
C#

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