12 lines
326 B
C#
Raw Normal View History

2023-03-12 20:49:40 +04:00
using SushiBarContracts.ViewModels;
namespace SushiBarBusinessLogic.OfficePackage.HelpersModels
{
public class WordInfo
{
public string FileName { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
2023-03-14 10:12:32 +04:00
public List<SushiViewModel> Sushi { get; set; } = new();
2023-03-12 20:49:40 +04:00
}
}