/* 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 { public class DriveInformation { /// /// The Drive Volume Name /// public string VolumeLabel { get; set; } /// /// The Root Directory /// public string RootDirectory { get; set; } } }