mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-09-22 06:45:11 +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.
42 lines
1008 B
C#
42 lines
1008 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 cuesheet
|
|
/// </summary>
|
|
public class CueSheet
|
|
{
|
|
/// <summary>
|
|
/// CATALOG
|
|
/// </summary>
|
|
public string? Catalog { get; set; }
|
|
|
|
/// <summary>
|
|
/// CDTEXTFILE
|
|
/// </summary>
|
|
public string? CdTextFile { get; set; }
|
|
|
|
/// <summary>
|
|
/// PERFORMER
|
|
/// </summary>
|
|
public string? Performer { get; set; }
|
|
|
|
/// <summary>
|
|
/// SONGWRITER
|
|
/// </summary>
|
|
public string? Songwriter { get; set; }
|
|
|
|
/// <summary>
|
|
/// TITLE
|
|
/// </summary>
|
|
public string? Title { get; set; }
|
|
|
|
/// <summary>
|
|
/// List of FILE in cuesheet
|
|
/// </summary>
|
|
public CueFile[] Files { get; set; } = [];
|
|
}
|
|
}
|