8 lines
132 B
C#
8 lines
132 B
C#
|
|
namespace Yavsc
|
|||
|
|
{
|
|||
|
|
public interface ILocation
|
|||
|
|
{
|
|||
|
|
string Address { get; set; }
|
|||
|
|
long Id { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|