36 lines
782 B
C#
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(); }
|
|
}
|
|
}
|
|
}
|