diff options
| author | LukePulverenti Luke Pulverenti luke pulverenti <LukePulverenti Luke Pulverenti luke.pulverenti@gmail.com> | 2012-08-23 14:35:44 -0400 |
|---|---|---|
| committer | LukePulverenti Luke Pulverenti luke pulverenti <LukePulverenti Luke Pulverenti luke.pulverenti@gmail.com> | 2012-08-23 14:35:44 -0400 |
| commit | 2454b72c93c29ab67e14713e81d91e3dee79fa2e (patch) | |
| tree | 33bc2fa1907b6df9a447f580962fc186a1c91099 /MediaBrowser.Common/Configuration/BaseApplicationPaths.cs | |
| parent | 4068047845d598761f0c9d9600e1cf089bfdb95a (diff) | |
Comments and cleanup. ALso updated ffmpeg + ffprobe
Diffstat (limited to 'MediaBrowser.Common/Configuration/BaseApplicationPaths.cs')
| -rw-r--r-- | MediaBrowser.Common/Configuration/BaseApplicationPaths.cs | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/MediaBrowser.Common/Configuration/BaseApplicationPaths.cs b/MediaBrowser.Common/Configuration/BaseApplicationPaths.cs index ae4528013..d030da844 100644 --- a/MediaBrowser.Common/Configuration/BaseApplicationPaths.cs +++ b/MediaBrowser.Common/Configuration/BaseApplicationPaths.cs @@ -1,14 +1,13 @@ -using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
+using System.Configuration;
using System.IO;
-using System.Configuration;
using System.Reflection;
namespace MediaBrowser.Common.Configuration
{
+ /// <summary>
+ /// Provides a base class to hold common application paths used by both the UI and Server.
+ /// This can be subclassed to add application-specific paths.
+ /// </summary>
public abstract class BaseApplicationPaths
{
private string _programDataPath;
|
