DocSpace-client/common/Tests/Frontend.Translations.Tests/Models/SpellIssue.cs
AlexeySafronov 4274e3a581 Web: Tests:
+ Added new SpellCheckTest() and submodule (common/Tests/Frontend.Translations.Tests/dictionaries)
+ Split tests on categories FastRunning|LongRunning
+ Added new build/run.translations.spellcheck.test.bat
2021-12-21 16:59:04 +03:00

17 lines
376 B
C#

using System.Collections.Generic;
namespace Frontend.Translations.Tests.Models
{
public class SpellIssue
{
public SpellIssue(string word, IEnumerable<string> suggestions)
{
Word = word;
Suggestions = suggestions;
}
public string Word { get; }
public IEnumerable<string> Suggestions { get; }
}
}