mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-22 19:22:53 +01:00
9 lines
184 B
C#
9 lines
184 B
C#
namespace Nikse.SubtitleEdit.Core.SpellCheck
|
|
{
|
|
public class SpellCheckWord
|
|
{
|
|
public int Index { get; set; }
|
|
public string Text { get; set; }
|
|
}
|
|
}
|