summaryrefslogtreecommitdiffstats
path: root/win/C#/Model/DriveInformation.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2011-01-22 18:02:19 +0000
committersr55 <[email protected]>2011-01-22 18:02:19 +0000
commitafcbfbd96a5536171ea640a67f6c14c907744894 (patch)
tree76215eeda5e80b5cbdc84f21ec8df7d1d2cedd67 /win/C#/Model/DriveInformation.cs
parentc3940c57f907e79b07f575ba6105deefd517bab2 (diff)
WinGui:
- Refactored some more code out of the UI project into the Services Project. - Added support for showing bluray drives to the "Source" dropdown menu git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3764 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Model/DriveInformation.cs')
-rw-r--r--win/C#/Model/DriveInformation.cs39
1 files changed, 0 insertions, 39 deletions
diff --git a/win/C#/Model/DriveInformation.cs b/win/C#/Model/DriveInformation.cs
deleted file mode 100644
index d7cef0ee5..000000000
--- a/win/C#/Model/DriveInformation.cs
+++ /dev/null
@@ -1,39 +0,0 @@
-/* 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
-{
- /// <summary>
- /// Information about a DVD drive
- /// </summary>
- public class DriveInformation
- {
- /// <summary>
- /// Gets or sets A Unique ID That represemts this model.
- /// </summary>
- public int Id { get; set; }
-
- /// <summary>
- /// Gets or sets The Drive Volume Name
- /// </summary>
- public string VolumeLabel { get; set; }
-
- /// <summary>
- /// Gets or sets The Root Directory
- /// </summary>
- public string RootDirectory { get; set; }
-
- /// <summary>
- /// Returns "Drive" + Id (e.g Drive2)
- /// </summary>
- /// <returns>
- /// A String that contrains "Drive" and it's ID
- /// </returns>
- public override string ToString()
- {
- return "Drive" + Id;
- }
- }
-} \ No newline at end of file