13 lines
No EOL
278 B
C#
13 lines
No EOL
278 B
C#
namespace Lingo;
|
|
|
|
public class Data
|
|
{
|
|
public string InputWord { get; private set; }
|
|
public string SelectedWord { get; private set; }
|
|
|
|
public Data(string inputWord, string selectedWord)
|
|
{
|
|
InputWord = inputWord;
|
|
SelectedWord = selectedWord;
|
|
}
|
|
} |