20240801_FJEQ_upperpc/FujianEarthquake_seabed/FujianEarthquake/Models/HelpModels/KeypaiValueModel.cs

22 lines
469 B
C#
Raw Permalink Normal View History

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