PIbd-21_Balberova_D.N._Sush.../SushiBar/SushiBarBusinessLogic/OfficePackage/HelperModels/WordInfo.cs

13 lines
330 B
C#
Raw Normal View History

2023-03-10 16:43:19 +04:00
using SushiBarContracts.ViewModels;
namespace SushiBarBusinessLogic.OfficePackage.HelperModels
{
public class WordInfo
{
public string FileName { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
2023-03-10 18:23:51 +04:00
public List<SushiViewModel> ListSushi { get; set; } = new();
2023-03-10 16:43:19 +04:00
}
}