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