20240801_FJEQ_upperpc/FujianEarthquake_seabed/FujianEarthquake/ViewModels/JunctionBoxModelViewModel.cs
XuMin 1f5631afb3 1 研究上下位机通信协议,编写协议解析代码;
2 研究岸基站可编程电源通信协议,编写岸基站状态数据显示页面;
2024-08-29 18:03:03 +08:00

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