yavsc/YavscLib/Workflow/ILocation.cs

9 lines
136 B
C#

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