20211010_CZPM_upperpc/垂直剖面动态观测系统/Model/Buoy_sensor_attitudeModel.cs

21 lines
492 B
C#
Raw Permalink Normal View History

2023-07-27 03:01:29 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using .Common;
namespace .Model
{
public class Buoy_sensor_attitudeModel : NotifyBase
{
private string _attitude_sensor;
public string Attitude_sensor
{
get { return _attitude_sensor; }
set { _attitude_sensor = value; this.DoNotify(); }
}
}
}