summaryrefslogtreecommitdiffstats
path: root/win/C#/Model/DriveInformation.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2010-02-20 21:59:23 +0000
committersr55 <[email protected]>2010-02-20 21:59:23 +0000
commitb59b7b8733533aed4b97da6679e455df63049e23 (patch)
tree9035a3438491bc3d8290af9bced2320da11edb21 /win/C#/Model/DriveInformation.cs
parentb9d00019295781bed79eca280bac798b7bb7c64f (diff)
WinGui:
- Some tweaks to the StyleCop Settings File. - Some abbreviations added to the ReSharper config file. - Some more warnings cleaned up. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3130 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Model/DriveInformation.cs')
-rw-r--r--win/C#/Model/DriveInformation.cs14
1 files changed, 8 insertions, 6 deletions
diff --git a/win/C#/Model/DriveInformation.cs b/win/C#/Model/DriveInformation.cs
index 9367e7e50..8db3ed8f8 100644
--- a/win/C#/Model/DriveInformation.cs
+++ b/win/C#/Model/DriveInformation.cs
@@ -1,20 +1,22 @@
/* DriveInformation.cs $
-
- This file is part of the HandBrake source code.
- Homepage: <http://handbrake.fr>.
- It may be used under the terms of the GNU General Public License. */
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.fr>.
+ It may be used under the terms of the GNU General Public License. */
namespace Handbrake.Model
{
+ /// <summary>
+ /// Information about a DVD drive
+ /// </summary>
public class DriveInformation
{
/// <summary>
- /// The Drive Volume Name
+ /// Gets or sets The Drive Volume Name
/// </summary>
public string VolumeLabel { get; set; }
/// <summary>
- /// The Root Directory
+ /// Gets or sets The Root Directory
/// </summary>
public string RootDirectory { get; set; }
}