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