22 lines
460 B
C#
22 lines
460 B
C#
|
|
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); }
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|