yavsc/YavscLib/ILocation.cs

8 lines
132 B
C#
Raw Normal View History

2016-07-20 13:52:38 +02:00
namespace Yavsc
{
public interface ILocation
{
string Address { get; set; }
long Id { get; set; }
}
}