diff options
Diffstat (limited to 'win/C#/Model/DriveInformation.cs')
-rw-r--r-- | win/C#/Model/DriveInformation.cs | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/win/C#/Model/DriveInformation.cs b/win/C#/Model/DriveInformation.cs new file mode 100644 index 000000000..9367e7e50 --- /dev/null +++ b/win/C#/Model/DriveInformation.cs @@ -0,0 +1,21 @@ +/* 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. */
+
+namespace Handbrake.Model
+{
+ public class DriveInformation
+ {
+ /// <summary>
+ /// The Drive Volume Name
+ /// </summary>
+ public string VolumeLabel { get; set; }
+
+ /// <summary>
+ /// The Root Directory
+ /// </summary>
+ public string RootDirectory { get; set; }
+ }
+}
|