OSDN Git Service

WinGui:
[handbrake-jp/handbrake-jp-git.git] / win / C# / Model / DriveInformation.cs
1 /*  DriveInformation.cs $\r
2     This file is part of the HandBrake source code.\r
3     Homepage: <http://handbrake.fr>.\r
4     It may be used under the terms of the GNU General Public License. */\r
5 \r
6 namespace Handbrake.Model\r
7 {\r
8     /// <summary>\r
9     /// Information about a DVD drive\r
10     /// </summary>\r
11     public class DriveInformation\r
12     {\r
13         /// <summary>\r
14         /// Gets or sets The Drive Volume Name\r
15         /// </summary>\r
16         public string VolumeLabel { get; set; }\r
17 \r
18         /// <summary>\r
19         /// Gets or sets The Root Directory\r
20         /// </summary>\r
21         public string RootDirectory { get; set; }\r
22     }\r
23 }\r