2025-09-26 11:42:28 -04:00
|
|
|
|
/// <remarks>
|
|
|
|
|
|
/// Information sourced from http://web.archive.org/web/20070221154246/http://www.goldenhawk.com/download/cdrwin.pdf
|
|
|
|
|
|
/// </remarks>
|
2025-09-26 13:06:18 -04:00
|
|
|
|
namespace SabreTools.Data.Models.CueSheets
|
2025-09-26 11:42:28 -04:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Represents a single FILE in a cuesheet
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public class CueFile
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// filename
|
|
|
|
|
|
/// </summary>
|
2025-10-31 13:59:28 -04:00
|
|
|
|
public string FileName { get; set; } = string.Empty;
|
2025-09-26 11:42:28 -04:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// filetype
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public CueFileType FileType { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// List of TRACK in FILE
|
|
|
|
|
|
/// </summary>
|
2025-10-31 13:59:28 -04:00
|
|
|
|
public CueTrack[] Tracks { get; set; } = [];
|
2025-09-26 11:42:28 -04:00
|
|
|
|
}
|
|
|
|
|
|
}
|