2023-04-07 02:20:02 +04:00

10 lines
316 B
C#

using HotelContracts.ViewModels;
namespace HotelBusinessLogic.OfficePackage.HelpersModels;
public class ExcelInfo
{
public string FileName { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
public List<ReportListCleaningModel> ListCleaningModels { get; set; } = new();
}