20220510_191_upperpc/AutomaticApp/Models/KeypaiValueModel.cs

22 lines
450 B
C#
Raw Permalink Normal View History

2023-07-27 02:57:34 +00:00
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); }
}
}
}