yavsc/YavscLib/Workflow/ILocation.cs
2017-03-02 20:25:49 +01:00

8 lines
136 B
C#

namespace YavscLib
{
public interface ILocation
{
string Address { get; set; }
long Id { get; set; }
}
}