12 lines
400 B
C#
Raw Normal View History

2024-03-22 20:57:18 +04:00
using SewingDressesContracts.ViewModels;
namespace SewingDressesBusinessLogic.OfficePackage.HelperModels
{
public class WordInfo
{
public string FileName { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
2024-03-23 09:37:51 +04:00
public List<DressViewModel> Dresses { get; set; } = new();
2024-04-19 00:17:02 +04:00
public List<ShopViewModel> Shops { get; set; } = new();
2024-03-22 20:57:18 +04:00
}
}