yavsc/Yavsc.Abstract/Workflow/ILocation.cs

9 lines
133 B
C#

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