/* * Copyright (c) 2018 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/. */ using System; namespace SafeExamBrowser.Contracts.Configuration { public interface IRuntimeInfo { /// /// The path of the application data folder. /// string AppDataFolder { get; } /// /// The point in time when the application was started. /// DateTime ApplicationStartTime { get; } /// /// The path where the browser cache is to be stored. /// string BrowserCachePath { get; } /// /// The file path under which the log of the browser component is to be stored. /// string BrowserLogFile { get; } /// /// The file path under which the log of the client component is to be stored. /// string ClientLogFile { get; } /// /// The copyright information for the application (i.e. the executing assembly). /// string ProgramCopyright { get; } /// /// The program title of the application (i.e. the executing assembly). /// string ProgramTitle { get; } /// /// The program version of the application (i.e. the executing assembly). /// string ProgramVersion { get; } /// /// The file path under which the log of the runtime component is to be stored. /// string RuntimeLogFile { get; } } }