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