16 lines
395 B
C#
Raw Normal View History

2023-03-01 16:42:58 +04:00
using ConfectioneryContracts.ViewModels;
namespace ConfectioneryBusinessLogic.OfficePackage.HelperModels
{
public class ExcelInfo
{
public string FileName { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
public List<ReportShopPastrytViewModel> ShopPastries
2023-03-01 16:42:58 +04:00
{
get;
set;
} = new();
}
}