10 lines
284 B
C#
10 lines
284 B
C#
namespace BusinessLogic.OfficePackage.HelperModels
|
|
{
|
|
public class WordInfo
|
|
{
|
|
public string FileName { get; set; } = string.Empty;
|
|
public string Title { get; set; } = string.Empty;
|
|
//public List<DressViewModel> Dresses { get; set; } = new();
|
|
}
|
|
}
|