20240801_FJEQ_upperpc/FujianEarthquake_seabed/FujianEarthquake/ViewModels/JunctionBoxModelViewModel.cs

22 lines
575 B
C#
Raw Normal View History

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