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 ExcelInfoGuarantor { public MemoryStream memoryStream { get; set; } = new MemoryStream(); public string Title { get; set; } = String.Empty; public List workerProducts { get; set; } = new(); public int maxleng { get; set; } } }