9 lines
145 B
C#
9 lines
145 B
C#
namespace Yavsc
|
|
{
|
|
public interface ILocation : IPosition
|
|
{
|
|
string Address { get; set; }
|
|
long Id { get; set; }
|
|
}
|
|
}
|