17 lines
422 B
C#
17 lines
422 B
C#
using AcademicProgressBusinessLogic.ViewModels;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AcademicProgressBusinessLogic.HelperModels
|
|
{
|
|
public class WordInfo
|
|
{
|
|
public string FileName { get; set; }
|
|
public string Title { get; set; }
|
|
public List<StudentScoresViewModel> StudentScores { get; set; }
|
|
}
|
|
}
|