mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-18 04:03:09 +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.
34 lines
967 B
C#
34 lines
967 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 a single INDEX in a TRACK
|
|
/// </summary>
|
|
public class CueIndex
|
|
{
|
|
/// <summary>
|
|
/// INDEX number, between 0 and 99
|
|
/// </summary>
|
|
public int Index { get; set; }
|
|
|
|
/// <summary>
|
|
/// Starting time of INDEX in minutes
|
|
/// </summary>
|
|
public int Minutes { get; set; }
|
|
|
|
/// <summary>
|
|
/// Starting time of INDEX in seconds
|
|
/// </summary>
|
|
/// <remarks>There are 60 seconds in a minute</remarks>
|
|
public int Seconds { get; set; }
|
|
|
|
/// <summary>
|
|
/// Starting time of INDEX in frames.
|
|
/// </summary>
|
|
/// <remarks>There are 75 frames per second</remarks>
|
|
public int Frames { get; set; }
|
|
}
|
|
}
|