| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 | using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace RecipeEditorLib.RecipeModel.Params{    public class DoubleParam : Param    {        private string  _value;        public string Value        {            get { return this._value; }            set            {                this._value = value;                if (this.Feedback != null)                    this.Feedback(this);                this.NotifyOfPropertyChange("Value");            }        }        private double _minimun;        public double Minimun        {            get { return this._minimun; }            set            {                this._minimun = value;                this.NotifyOfPropertyChange("Minimun");            }        }        private double _maximun;        public double Maximun        {            get { return this._maximun; }            set            {                this._maximun = value;                this.NotifyOfPropertyChange("Maximun");            }        }        private int _resolution;        public int Resolution        {            get { return this._resolution; }            set            {                this._resolution = value;                this.NotifyOfPropertyChange("Resolution");            }        }    }}
 |