// -------------------------------------------------------------------------------------------------------------------- // // This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. // // // Information about a DVD drive // // -------------------------------------------------------------------------------------------------------------------- namespace HandBrakeWPF.Model { /// /// Information about a DVD drive /// public class DriveInformation { /// /// Gets or sets A Unique ID That represemts this model. /// public int Id { get; set; } /// /// Gets or sets The Drive Volume Name /// public string VolumeLabel { get; set; } /// /// Gets or sets The Root Directory /// public string RootDirectory { get; set; } /// /// Gets or sets a value indicating whether this is a BluRay Drive. /// public bool IsBluRay { get; set; } /// /// Returns "Drive" + Id (e.g Drive2) /// /// /// A String that contrains "Drive" and it's ID /// public override string ToString() { return "Drive" + this.Id; } } }