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

12 lines
238 B
C#

using System.Collections.Generic;
namespace Popstation
{
public class CueTrack
{
public int Number { get; set; }
public string DataType { get; set; }
public List<CueIndex> Indexes { get; set; }
}
}