mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-19 04:33:17 +00:00
This change looks dramatic, but it's just separating out the already-split namespaces into separate top-level folders. In theory, every single one could be built into their own Nuget package. `SabreTools.Serialization` still builds the normal Nuget package that is used by all other projects and includes all namespaces.
29 lines
828 B
C#
29 lines
828 B
C#
/// <remarks>
|
|
/// Information sourced from http://web.archive.org/web/20070221154246/http://www.goldenhawk.com/download/cdrwin.pdf
|
|
/// </remarks>
|
|
namespace SabreTools.Data.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; }
|
|
}
|
|
}
|