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