1
0
mirror of synced 2024-11-24 04:20:10 +01:00
TaikoSoundEditor/Data/NewSongData.cs
NotImplementedLife 1ff7354141 first commit
2023-07-17 11:20:00 +03:00

35 lines
935 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TaikoSoundEditor.Data
{
internal class NewSongData
{
public string Id { get; set; }
public int UniqueId { get; set; }
public byte[] Wav { get; set; }
public byte[] EBin { get; set; }
public byte[] HBin { get; set; }
public byte[] MBin { get; set; }
public byte[] NBin { get; set; }
public byte[] XBin { get; set; }
public byte[] Nus3Bank { get; set; }
public MusicAttribute MusicAttribute { get; set; }
public MusicInfo MusicInfo { get; set; }
public MusicOrder MusicOrder { get; set; }
public Word Word { get; set; }
public Word WordSub { get; set; }
public Word WordDetail { get; set; }
public override string ToString() => $"{UniqueId}. {Id}";
}
}