yavsc/Yavsc/Interfaces/ILocation.cs

8 lines
143 B
C#
Raw Normal View History

namespace Yavsc.Interfaces
2016-07-27 10:55:44 +02:00
{
public interface ILocation
{
string Address { get; set; }
long Id { get; set; }
}
}