15 lines
365 B
C#
15 lines
365 B
C#
using ElectronicsShopContracts.ViewModels;
|
|
|
|
|
|
namespace ElectronicsShopBusinessLogic.OfficePackage.HelperModels
|
|
{
|
|
public class WordInfoClient
|
|
{
|
|
public string FileName { get; set; } = string.Empty;
|
|
|
|
public string Title { get; set; } = string.Empty;
|
|
|
|
public List<ReportPaymeantsViewModel> ListPaymeant { get; set; } = new();
|
|
}
|
|
}
|