public Card() { Front = new CardPage(); Back = new CardPage(); Info = new CardInfo(); Keywords = new ObservableCollection <string>(); }
public Card(string name) { this.name = name; Front = new CardPage(); Back = new CardPage(); Info = new CardInfo(); Keywords = new ObservableCollection <string>(); }