You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1016 B
44 lines
1016 B
using System;
|
|
using System.ComponentModel;
|
|
using TheGameExtreme.model.card;
|
|
|
|
namespace TheGameExtreme.viewmodel
|
|
{
|
|
public class CardVM : INotifyPropertyChanged
|
|
{
|
|
|
|
public event PropertyChangedEventHandler PropertyChanged;
|
|
public Card View { get; set; }
|
|
protected string image;
|
|
public string Image
|
|
{
|
|
get { return image; }
|
|
set
|
|
{
|
|
image = value;
|
|
OnPropertyChanged("Image");
|
|
}
|
|
}
|
|
protected int value;
|
|
public int Value {
|
|
get { return value; }
|
|
set
|
|
{
|
|
this.value = value;
|
|
OnPropertyChanged("Value");
|
|
}
|
|
}
|
|
protected virtual void OnPropertyChanged(string info)
|
|
{
|
|
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(info));
|
|
}
|
|
|
|
public CardVM(Card view)
|
|
{
|
|
View = view;
|
|
|
|
Value = view.Value;
|
|
}
|
|
}
|
|
}
|