/*
* Copyright (c) 2017 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.Contracts.Configuration.Settings
{
public interface ISettings
{
///
/// The name used for the application data folder.
///
string AppDataFolderName { get; }
///
/// The file path under which the application log is to be stored.
///
string ApplicationLogFile { get; }
///
/// All browser-related settings.
///
IBrowserSettings Browser { get; }
///
/// The path where the log files are to be stored.
///
string LogFolderPath { 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; }
///
/// A string uniquely identifying the runtime of the application, used e.g. for the log file names.
///
string RuntimeIdentifier { get; }
}
}