diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-01-25 16:07:19 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-01-25 16:07:19 -0500 |
| commit | ac8ffb8db0a41607cba9f8d3576a9f6643ac86bb (patch) | |
| tree | 3d23169e09ac5376e853eb12c4aca1c426f58e61 /MediaBrowser.Common.Implementations/BaseApplicationHost.cs | |
| parent | 51954a283f1f0a23cfdb378300c1e09d6c57312a (diff) | |
Added IAppHost.Name
Diffstat (limited to 'MediaBrowser.Common.Implementations/BaseApplicationHost.cs')
| -rw-r--r-- | MediaBrowser.Common.Implementations/BaseApplicationHost.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/MediaBrowser.Common.Implementations/BaseApplicationHost.cs b/MediaBrowser.Common.Implementations/BaseApplicationHost.cs index 8e9a287b6..9d2dd0838 100644 --- a/MediaBrowser.Common.Implementations/BaseApplicationHost.cs +++ b/MediaBrowser.Common.Implementations/BaseApplicationHost.cs @@ -166,6 +166,12 @@ namespace MediaBrowser.Common.Implementations protected IIsoManager IsoManager { get; private set; } /// <summary> + /// Gets the name. + /// </summary> + /// <value>The name.</value> + public abstract string Name { get; } + + /// <summary> /// Initializes a new instance of the <see cref="BaseApplicationHost{TApplicationPathsType}"/> class. /// </summary> protected BaseApplicationHost(TApplicationPathsType applicationPaths, ILogManager logManager) |
