/* * Copyright (c) 2021 ETH Zürich, Educational Development and Technology (LET) * * 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 { /// /// Contains all information required to establish a connection with a server. /// public class ConnectionInfo { /// /// The API of the server as JSON string. /// public string Api { get; set; } /// /// The connection token for authentication with the server. /// public string ConnectionToken { get; set; } /// /// The OAuth2 token for authentication with the server. /// public string Oauth2Token { get; set; } } }