SushiBarBase/SushiBar/SushiBarBusinessLogic/OfficePackage/HelperModels/WordInfo.cs

13 lines
327 B
C#
Raw Permalink Normal View History

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<SushiViewModel> Sushis { get; set; } = new();
}
}