using AutomaticApp.Common; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AutomaticApp.Models { public class KeypaiValueModel : NotifyBase { public string Header { get; set; } private string _value; public string Value { get { return _value; } set { SetProperty(ref _value, value); } } } }