20240301_JSEQ_upperpc/JiangsuEarthquakeNowUI/JiangsuEarthquake/ViewModels/BaseStationModelViewModel.cs

22 lines
578 B
C#
Raw Permalink Normal View History

2024-11-01 07:54:08 +00:00
using JiangsuEarthquake.Common;
using JiangsuEarthquake.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JiangsuEarthquake.ViewModels
{
public class BaseStationModelViewModel : NotifyBase
{
private BaseStationGestureModel baseStationGesture = new BaseStationGestureModel();
public BaseStationGestureModel BaseStationGesture
{
get { return baseStationGesture; }
set { baseStationGesture = value; this.DoNotify(); }
}
}
}