2024-03-27 11:04:28 +04:00
|
|
|
|
using PlumbingRepairContracts.ViewModels;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace PlumbingRepairBusinessLogic.OfficePackage.HelperModels
|
|
|
|
|
{
|
|
|
|
|
public class WordInfo
|
|
|
|
|
{
|
|
|
|
|
public string FileName { get; set; } = string.Empty;
|
|
|
|
|
public string Title { get; set; } = string.Empty;
|
2024-04-09 13:35:33 +04:00
|
|
|
|
public List<WorkViewModel> Works { get; set; } = new();
|
2024-03-27 11:04:28 +04:00
|
|
|
|
}
|
|
|
|
|
}
|