20240301_JSEQ_upperpc/JiangsuEarthquake_test/JiangsuEarthquake/Models/KeypaiValueModel.cs

22 lines
460 B
C#
Raw Normal View History

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