Files
yavsc/Yavsc.Server/Interfaces/ILocation.cs
2018-05-02 04:09:51 +02:00

8 lines
143 B
C#

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