using MediaBrowser.Model.Updates;
using System.Collections.Generic;
namespace MediaBrowser.Model.System
{
///
/// Class SystemInfo
///
public class SystemInfo
{
///
/// Gets or sets the version.
///
/// The version.
public string Version { get; set; }
///
/// Gets or sets the operating sytem.
///
/// The operating sytem.
public string OperatingSystem { get; set; }
///
/// Gets or sets a value indicating whether this instance is running as service.
///
/// true if this instance is running as service; otherwise, false.
public bool IsRunningAsService { get; set; }
///
/// Gets or sets the mac address.
///
/// The mac address.
public string MacAddress { get; set; }
///
/// Gets or sets a value indicating whether this instance has pending restart.
///
/// true if this instance has pending restart; otherwise, false.
public bool HasPendingRestart { get; set; }
///
/// Gets or sets a value indicating whether this instance is network deployed.
///
/// true if this instance is network deployed; otherwise, false.
public bool IsNetworkDeployed { get; set; }
///
/// Gets or sets the in progress installations.
///
/// The in progress installations.
public List InProgressInstallations { get; set; }
///
/// Gets or sets the web socket port number.
///
/// The web socket port number.
public int WebSocketPortNumber { get; set; }
///
/// Gets or sets the completed installations.
///
/// The completed installations.
public List CompletedInstallations { get; set; }
///
/// Gets or sets a value indicating whether [supports native web socket].
///
/// true if [supports native web socket]; otherwise, false.
public bool SupportsNativeWebSocket { get; set; }
///
/// Gets or sets a value indicating whether this instance can self restart.
///
/// true if this instance can self restart; otherwise, false.
public bool CanSelfRestart { get; set; }
///
/// Gets or sets a value indicating whether this instance can self update.
///
/// true if this instance can self update; otherwise, false.
public bool CanSelfUpdate { get; set; }
///
/// Gets or sets plugin assemblies that failed to load.
///
/// The failed assembly loads.
public List FailedPluginAssemblies { get; set; }
///
/// Gets or sets the id.
///
/// The id.
public string Id { get; set; }
///
/// Gets or sets the program data path.
///
/// The program data path.
public string ProgramDataPath { get; set; }
///
/// Gets or sets the items by name path.
///
/// The items by name path.
public string ItemsByNamePath { get; set; }
///
/// Gets or sets the cache path.
///
/// The cache path.
public string CachePath { get; set; }
///
/// Gets or sets the log path.
///
/// The log path.
public string LogPath { get; set; }
///
/// Gets or sets the transcoding temporary path.
///
/// The transcoding temporary path.
public string TranscodingTempPath { get; set; }
///
/// Gets or sets the HTTP server port number.
///
/// The HTTP server port number.
public int HttpServerPortNumber { get; set; }
///
/// Gets or sets the wan address.
///
/// The wan address.
public string WanAddress { get; set; }
///
/// Gets or sets a value indicating whether this instance has update available.
///
/// true if this instance has update available; otherwise, false.
public bool HasUpdateAvailable { get; set; }
///
/// Gets or sets a value indicating whether [supports automatic run at startup].
///
/// true if [supports automatic run at startup]; otherwise, false.
public bool SupportsAutoRunAtStartup { get; set; }
///
/// Gets or sets the name of the server.
///
/// The name of the server.
public string ServerName { get; set; }
///
/// Initializes a new instance of the class.
///
public SystemInfo()
{
InProgressInstallations = new List();
CompletedInstallations = new List();
FailedPluginAssemblies = new List();
}
}
}