seb-win-refactoring/SafeExamBrowser.Server.Contracts/Data/Exam.cs

36 lines
849 B
C#

/*
* Copyright (c) 2024 ETH Zürich, IT Services
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
namespace SafeExamBrowser.Server.Contracts.Data
{
/// <summary>
/// Defines a server exam.
/// </summary>
public class Exam
{
/// <summary>
/// The identifier of the exam.
/// </summary>
public string Id { get; set; }
/// <summary>
/// The name of the learning management system (LMS) on which the exam is running.
/// </summary>
public string LmsName { get; set; }
/// <summary>
/// The name of the exam.
/// </summary>
public string Name { get; set; }
/// <summary>
/// The URL of the exam.
/// </summary>
public string Url { get; set; }
}
}