11 lines
338 B
C#
11 lines
338 B
C#
using ConfectioneryContracts.ViewModels;
|
|
namespace ConfectioneryBusinessLogic.OfficePackage.HelperModels
|
|
{
|
|
public class WordInfo
|
|
{
|
|
public string FileName { get; set; } = string.Empty;
|
|
public string Title { get; set; } = string.Empty;
|
|
public List<PastryViewModel> Pastries { get; set; } = new();
|
|
}
|
|
}
|