yavsc/YavscLib/Workflow/ISpecializationSettings.cs

8 lines
161 B
C#
Raw Normal View History

namespace YavscLib
{
public interface ISpecializationSettings
{
2017-01-14 13:51:05 +01:00
string UserId { get ; set ; }
bool ExistsInDb(object dbContext);
}
}