13 lines
310 B
C#
13 lines
310 B
C#
using ElectronicsShopContracts.ViewModels;
|
|
|
|
|
|
namespace ElectronicsShopBusinessLogic.OfficePackage.HelperModels
|
|
{
|
|
public class WordInfoEmployee
|
|
{
|
|
public string Title { get; set; } = string.Empty;
|
|
|
|
public List<ReportProductInPaymeantsViewModel> ListProduct { get; set; } = new();
|
|
}
|
|
}
|