This commit is contained in:
skidoodle 2024-03-13 00:33:46 +01:00
commit e124a47765
19374 changed files with 9806149 additions and 0 deletions

View file

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