14 lines
326 B
C#
14 lines
326 B
C#
|
using GiftShopContracts.ViewModels;
|
|||
|
|
|||
|
namespace GiftShopBusinessLogic.OfficePackage.HelperModels
|
|||
|
{
|
|||
|
public class WordInfo
|
|||
|
{
|
|||
|
public string FileName { get; set; } = string.Empty;
|
|||
|
|
|||
|
public string Title { get; set; } = string.Empty;
|
|||
|
|
|||
|
public List<GiftViewModel> Gifts { get; set; } = new();
|
|||
|
}
|
|||
|
}
|