1
0
mirror of synced 2024-11-23 20:10:57 +01:00
TaikoSoundEditor/Data/IWord.cs
2023-10-01 19:40:41 +03:00

10 lines
196 B
C#

namespace TaikoSoundEditor.Data
{
public interface IWord
{
string Key { get; set; }
string JapaneseText { get; set; }
int JapaneseFontType { get; set; }
}
}