Coursach/Course/BusinessLogic/OfficePackage/HelperModels/WordInfoGuarantor.cs

17 lines
440 B
C#

using Contracts.ViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BusinessLogic.OfficePackage.HelperModels
{
public class WordInfoGuarantor
{
public MemoryStream memoryStream { get; set; } = new MemoryStream();
public string Title { get; set; } = string.Empty;
public List<WorkerProductReportViewModel> Products { get; set; } = new();
}
}