yavsc/YavscLib/ILocation.cs

8 lines
132 B
C#

namespace Yavsc
{
public interface ILocation
{
string Address { get; set; }
long Id { get; set; }
}
}