8 lines
142 B
C#
8 lines
142 B
C#
|
|
namespace Yavsc
|
|||
|
|
{
|
|||
|
|
public interface IPosition
|
|||
|
|
{
|
|||
|
|
double Latitude { get; set; }
|
|||
|
|
double Longitude { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|