Lingo_New/Lingo/Data.cs
2026-08-02 15:09:14 -03:00

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;
}
}