Improved sample app

This commit is contained in:
mort5161 2014-11-15 00:10:24 -08:00
parent f91809f8e5
commit a3e63a1111
17 changed files with 494 additions and 12 deletions

View file

@ -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; }
}
}

View file

@ -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; }
}
}