wasSharp – Blame information for rev 27

Subversion Repositories:
Rev:
Rev Author Line No. Line
14 office 1 ///////////////////////////////////////////////////////////////////////////
2 // Copyright (C) Wizardry and Steamworks 2016 - License: GNU GPLv3 //
3 // Please see: http://www.gnu.org/licenses/gpl.html for legal details, //
4 // rights of fair usage, the disclaimer and warranty conditions. //
5 ///////////////////////////////////////////////////////////////////////////
6  
7 namespace wasSharp.Geo
8 {
9 public class GeographicCoordinate
10 {
11 public GeographicCoordinate(double latitude, double longitude)
12 {
13 Latitude = latitude;
14 Longitude = longitude;
15 }
16  
17 public double Latitude { get; }
18  
19 public double Longitude { get; }
20 }
27 office 21 }