namespace Kreta.Web.Models
{
///
/// StatusModel
///
public class StatusModel
{
///
/// Gets or sets the build version.
///
///
/// The build version.
///
public string BuildVersion { get; set; }
///
/// Gets or sets the name of the branch.
///
///
/// The name of the branch.
///
public string BranchName { get; set; }
///
/// Gets or sets the build date time UTC.
///
///
/// The build date time UTC.
///
public string BuildDateTimeUtc { get; set; }
///
/// Gets or sets the commit number.
///
///
/// The commit number.
///
public string CommitNumber { get; set; }
///
/// Gets or sets the last login date time by institute.
///
///
/// The last login date time by institute.
///
public string LastLoginDateTimeByInstitute { get; set; }
///
/// Gets or sets the active school year.
///
///
/// The active school year.
///
public string ActiveSchoolYear { get; set; }
///
/// Gets or sets the last lesson date time.
///
///
/// The last lesson date time.
///
public string LastLessonDateTime { get; set; }
///
/// Gets or sets the last logged lesson date time.
///
///
/// The last logged lesson date time.
///
public string LastLoggedLessonDateTime { get; set; }
}
}