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

22 lines
578 B
C#
Raw Permalink Normal View History

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(); }
}
}
}