10 lines
196 B
C#
10 lines
196 B
C#
namespace TaikoSoundEditor.Data
|
|
{
|
|
public interface IWord
|
|
{
|
|
string Key { get; set; }
|
|
string JapaneseText { get; set; }
|
|
int JapaneseFontType { get; set; }
|
|
}
|
|
}
|