yavsc/YavscLib/Workflow/IPosition.cs

8 lines
142 B
C#
Raw Normal View History

2016-07-20 13:52:38 +02:00
namespace Yavsc
{
public interface IPosition
{
double Latitude { get; set; }
double Longitude { get; set; }
}
}