///
/// Information sourced from http://web.archive.org/web/20070221154246/http://www.goldenhawk.com/download/cdrwin.pdf
///
namespace SabreTools.Data.Models.CueSheets
{
///
/// Represents PREGAP information of a track
///
public class PreGap
{
///
/// Length of PREGAP in minutes
///
public int Minutes { get; set; }
///
/// Length of PREGAP in seconds
///
/// There are 60 seconds in a minute
public int Seconds { get; set; }
///
/// Length of PREGAP in frames.
///
/// There are 75 frames per second
public int Frames { get; set; }
}
}