mirror of
https://github.com/dotMorten/NmeaParser.git
synced 2026-04-06 06:53:51 +00:00
Improved sample app
This commit is contained in:
parent
f91809f8e5
commit
a3e63a1111
17 changed files with 494 additions and 12 deletions
|
|
@ -64,11 +64,11 @@ namespace NmeaParser.Nmea.Gps
|
|||
/// <summary>
|
||||
/// Name of origin
|
||||
/// </summary>
|
||||
public string OriginId { get; set; }
|
||||
public string OriginId { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// Name of destination
|
||||
/// </summary>
|
||||
public string DestinationId { get; set; }
|
||||
public string DestinationId { get; private set; }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -137,11 +137,11 @@ namespace NmeaParser.Nmea.Gps
|
|||
/// <summary>
|
||||
/// Time since last DGPS update
|
||||
/// </summary>
|
||||
public TimeSpan TimeSinceLastDgpsUpdate { get; set; }
|
||||
public TimeSpan TimeSinceLastDgpsUpdate { get; private set; }
|
||||
|
||||
/// <summary>
|
||||
/// DGPS Station ID Number
|
||||
/// </summary>
|
||||
public int DgpsStationId { get; set; }
|
||||
public int DgpsStationId { get; private set; }
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue