chovy-sign/CHOVY-SIGN/POPS/CueFile.cs

12 lines
241 B
C#

using System.Collections.Generic;
namespace Popstation
{
public class CueFile
{
public string FileName { get; set; }
public string FileType { get; set; }
public List<CueTrack> Tracks { get; set; }
}
}