mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-09-23 23:25:35 +00:00
29 lines
823 B
C#
29 lines
823 B
C#
/// <remarks>
|
|
/// Information sourced from http://web.archive.org/web/20070221154246/http://www.goldenhawk.com/download/cdrwin.pdf
|
|
/// </remarks>
|
|
namespace SabreTools.Models.CueSheets
|
|
{
|
|
/// <summary>
|
|
/// Represents POSTGAP information of a track
|
|
/// </summary>
|
|
public class PostGap
|
|
{
|
|
/// <summary>
|
|
/// Length of POSTGAP in minutes
|
|
/// </summary>
|
|
public int Minutes { get; set; }
|
|
|
|
/// <summary>
|
|
/// Length of POSTGAP in seconds
|
|
/// </summary>
|
|
/// <remarks>There are 60 seconds in a minute</remarks>
|
|
public int Seconds { get; set; }
|
|
|
|
/// <summary>
|
|
/// Length of POSTGAP in frames.
|
|
/// </summary>
|
|
/// <remarks>There are 75 frames per second</remarks>
|
|
public int Frames { get; set; }
|
|
}
|
|
}
|