This commit is contained in:
Paul Schneider 2016-11-28 15:19:59 +01:00
commit 528e4ac947
19 changed files with 0 additions and 6 deletions

8
YavscLib/ILocation.cs Normal file
View file

@ -0,0 +1,8 @@
namespace Yavsc
{
public interface ILocation
{
string Address { get; set; }
long Id { get; set; }
}
}