Class LecturesStudentModel
Lectures visiting student model.
Inherited Members
Namespace: EduCATS.Data.Models
Assembly: EduCATS.dll
Syntax
public class LecturesStudentModel
Properties
Login
Student username.
Declaration
[JsonProperty("Login")]
public string Login { get; set; }
Property Value
Type | Description |
---|---|
string |
StudentId
Student ID.
Declaration
[JsonProperty("StudentId")]
public int StudentId { get; set; }
Property Value
Type | Description |
---|---|
int |
StudentName
Student full name.
Declaration
[JsonProperty("StudentName")]
public string StudentName { get; set; }
Property Value
Type | Description |
---|---|
string |
VisitingList
Visiting details list.
Declaration
[JsonProperty("Marks")]
public IList<LecturesDetailsModel> VisitingList { get; set; }
Property Value
Type | Description |
---|---|
IList<LecturesDetailsModel> |