/* DriveInformation.cs $ This file is part of the HandBrake source code. Homepage: . It may be used under the terms of the GNU General Public License. */ namespace Handbrake.Model { /// /// Information about a DVD drive /// public class DriveInformation { /// /// Gets or sets The Drive Volume Name /// public string VolumeLabel { get; set; } /// /// Gets or sets The Root Directory /// public string RootDirectory { get; set; } } }