using System; using System.Collections.Generic; using System.IO; /// /// Information sourced from http://web.archive.org/web/20070221154246/http://www.goldenhawk.com/download/cdrwin.pdf /// namespace SabreTools.Models.CueSheets { /// /// Represents a single FILE in a cuesheet /// public class CueFile { /// /// filename /// public string? FileName { get; set; } /// /// filetype /// public CueFileType FileType { get; set; } /// /// List of TRACK in FILE /// public CueTrack?[]? Tracks { get; set; } } }