1
0
mirror of synced 2024-11-24 04:20:10 +01:00
TaikoSoundEditor/Data/IWord.cs

10 lines
196 B
C#
Raw Normal View History

2023-10-01 18:40:41 +02:00
namespace TaikoSoundEditor.Data
{
public interface IWord
{
string Key { get; set; }
string JapaneseText { get; set; }
int JapaneseFontType { get; set; }
}
}