yavsc/Yavsc.Server/Interfaces/ILocation.cs

8 lines
143 B
C#

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