yavsc/Yavsc.Abstract/Workflow/ILocation.cs

8 lines
145 B
C#
Raw Normal View History

2017-05-27 16:22:58 +02:00
namespace Yavsc
2016-07-20 13:52:38 +02:00
{
2018-02-03 20:17:29 +01:00
public interface ILocation : IPosition
2016-07-20 13:52:38 +02:00
{
string Address { get; set; }
long Id { get; set; }
}
2017-02-07 15:04:58 +01:00
}