PIbd-23_Mochalov_D.V._LawFirm/LawFirm/LawFirmBusinessLogic/OfficePackage/HelperModels/WordInfo.cs

18 lines
510 B
C#
Raw Normal View History

using LawFirmContracts.ViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LawFirmBusinessLogic.OfficePackage.HelperModels
{
public class WordInfo
{
public string FileName { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
public List<DocumentViewModel> Documents { get; set; } = new();
public List<ShopViewModel> Shops { get; set; } = new();
}
}