mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-08-01 05:28:44 +00:00
39 lines
874 B
C#
39 lines
874 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
|
|
/// <remarks>
|
|
/// Information sourced from http://web.archive.org/web/20070221154246/http://www.goldenhawk.com/download/cdrwin.pdf
|
|
/// </remarks>
|
|
namespace SabreTools.Models.CueSheets
|
|
{
|
|
/// <summary>
|
|
/// Represents a single FILE in a cuesheet
|
|
/// </summary>
|
|
public class CueFile
|
|
{
|
|
/// <summary>
|
|
/// filename
|
|
/// </summary>
|
|
#if NET48
|
|
public string FileName { get; set; }
|
|
#else
|
|
public string? FileName { get; set; }
|
|
#endif
|
|
|
|
/// <summary>
|
|
/// filetype
|
|
/// </summary>
|
|
public CueFileType FileType { get; set; }
|
|
|
|
/// <summary>
|
|
/// List of TRACK in FILE
|
|
/// </summary>
|
|
#if NET48
|
|
public CueTrack[] Tracks { get; set; }
|
|
#else
|
|
public CueTrack?[]? Tracks { get; set; }
|
|
#endif
|
|
}
|
|
}
|