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

13 lines
337 B
C#

using SushiBarContracts.ViewModels;
namespace SushiBarBusinessLogic.OfficePackage.HelperModels
{
public class WordInfo
{
public string FileName { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
public List<IngredientViewModel> Ingredients { get; set; } = new();
}
}