Files
yavsc/Yavsc.Server/Interfaces/ILocation.cs
2018-03-26 19:27:29 +02:00

8 lines
143 B
C#

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