minChz.|<_|

This commit is contained in:
Paul Schneider 2018-02-25 03:33:54 +01:00
commit 77e229fc8a
30 changed files with 3182 additions and 95 deletions

View file

@ -0,0 +1,10 @@
using System;
namespace Yavsc.Abstract.Workflow
{
public interface INominativeQuery: IQuery
{
bool Rejected { get; set; }
DateTime RejectedAt { get; set; }
}
}