21 lines
550 B
C#
21 lines
550 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AcademicProgressBusinessLogic.ViewModels
|
|
{
|
|
public class StudentScoresViewModel
|
|
{
|
|
public string StudentLastName { get; set; }
|
|
public string StudentFirstName { get; set; }
|
|
public string DisciplineName { get; set; }
|
|
public string Scores { get; set; }
|
|
public int Zet { get; set; }
|
|
public double Average { get; set; }
|
|
public int Semester { get; set; }
|
|
|
|
}
|
|
}
|