22 lines
575 B
C#
22 lines
575 B
C#
using FujianEarthquake.Common;
|
|
using FujianEarthquake.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FujianEarthquake.ViewModels
|
|
{
|
|
public class BaseStationModelViewModel : NotifyBase
|
|
{
|
|
private BaseStationGestureModel baseStationGesture = new BaseStationGestureModel();
|
|
|
|
public BaseStationGestureModel BaseStationGesture
|
|
{
|
|
get { return baseStationGesture; }
|
|
set { baseStationGesture = value; this.DoNotify(); }
|
|
}
|
|
}
|
|
}
|