interface

This commit is contained in:
Paul Schneider 2017-02-02 15:13:32 +01:00
commit 6589a4f948
6 changed files with 86 additions and 25 deletions

10
YavscLib/ICoWorking.cs Normal file
View file

@ -0,0 +1,10 @@
namespace YavscLib
{
public interface ICoWorking
{
long Id {get; set; }
string PerformerId { get; set; }
string WorkingForId { get; set; }
}
}