17 lines
460 B
C#
Raw Normal View History

using TravelCompanyContracts.ViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TravelCompanyBusinessLogic.OfficePackage.HelperModels
{
public class WordInfo
{
public string FileName { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
2024-04-10 00:03:21 +04:00
public List<ComponentViewModel> Components { get; set; } = new();
}
}