using SchoolAgainStudyContracts.ViewModel; namespace SchoolAgainStudyBusinessLogic.OfficePackage.HelperModels { public class WordInfoStudent { public string FileName { get; set; } = string.Empty; public string Title { get; set; } = string.Empty; public List InterestLessons { get; set; } = new(); } }