20211010_CZPM_upperpc/垂直剖面动态观测系统/Model/Buoy_sensor_attitudeModel.cs
2023-07-27 11:01:29 +08:00

21 lines
492 B
C#

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