mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-07-21 08:14:32 +00:00
31 lines
736 B
C#
31 lines
736 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>
|
|
public string? FileName { get; set; }
|
|
|
|
/// <summary>
|
|
/// filetype
|
|
/// </summary>
|
|
public CueFileType FileType { get; set; }
|
|
|
|
/// <summary>
|
|
/// List of TRACK in FILE
|
|
/// </summary>
|
|
public CueTrack?[]? Tracks { get; set; }
|
|
}
|
|
}
|