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 JunctionBoxModelViewModel : NotifyBase
|
|||
|
|
{
|
|||
|
|
private JunctionBoxGestureModel junctionBoxGesture = new JunctionBoxGestureModel();
|
|||
|
|
|
|||
|
|
public JunctionBoxGestureModel JunctionBoxGesture
|
|||
|
|
{
|
|||
|
|
get { return junctionBoxGesture; }
|
|||
|
|
set { junctionBoxGesture = value; this.DoNotify(); }
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|