MFlaw.cs 1.04 KB
namespace OS.Spin.ViewModle.Flaw
{
    public class MFlaw : BasePropertyChanged
    {
        private string _flawName = string.Empty;

        private double _meter ;
        public double Meter
        {
            get { return _meter; }
            set
            {
                _meter = value;
                OnPropertyChanged("Meter");
            }
        }

        public string FlawName
        {
            get { return _flawName; }
            set
            {
                _flawName = value;
                OnPropertyChanged("FlawName");
            }
        }

        private string _score;
        public string Score
        {
            get { return _score; }
            set
            {
                _score = value;
                OnPropertyChanged("Score");
            }
        }

        private string _id = string.Empty;

        public string Id
        {
            get { return _id; }
            set
            {
                _id = value;
                OnPropertyChanged("Id");
            }
        }
    }
}