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

36 lines
782 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using .Common;
namespace .Model
{
public class GPSModel : NotifyBase
{
private DateTime _datetime_Sensor;
public DateTime datetime_Sensor
{
get { return _datetime_Sensor; }
set { _datetime_Sensor = value; this.DoNotify(); }
}
private float jd;
public float JD
{
get { return jd; }
set { jd = value; this.DoNotify(); }
}
private float wd;
public float WD
{
get { return wd; }
set { wd = value; this.DoNotify(); }
}
}
}