Class StatsStudentModel
Student statistics model.
Inherited Members
Namespace: EduCATS.Data.Models
Assembly: EduCATS.dll
Syntax
public class StatsStudentModel
  Properties
AverageLabsMark
Average labs rating mark.
Declaration
[JsonProperty("LabsMarkTotal")]
public string AverageLabsMark { get; set; }
  Property Value
| Type | Description | 
|---|---|
| string | 
AverageTestMark
Average tests rating mark.
Declaration
[JsonProperty("TestMark")]
public string AverageTestMark { get; set; }
  Property Value
| Type | Description | 
|---|---|
| string | 
Login
Student username.
Declaration
[JsonProperty("Login")]
public string Login { get; set; }
  Property Value
| Type | Description | 
|---|---|
| string | 
MarkList
Student laboratory works rating marks list.
Declaration
[JsonProperty("Marks")]
public IList<StatsMarkModel> MarkList { get; set; }
  Property Value
| Type | Description | 
|---|---|
| IList<StatsMarkModel> | 
Name
Student name.
Declaration
[JsonProperty("FullName")]
public string Name { get; set; }
  Property Value
| Type | Description | 
|---|---|
| string | 
StudentId
Student ID.
Declaration
[JsonProperty("StudentId")]
public int StudentId { get; set; }
  Property Value
| Type | Description | 
|---|---|
| int | 
VisitingList
Student laboratory works visiting list.
Declaration
[JsonProperty("LabVisitingMark")]
public IList<StatsVisitingModel> VisitingList { get; set; }
  Property Value
| Type | Description | 
|---|---|
| IList<StatsVisitingModel> |