yavsc/Yavsc/Interfaces/Workflow/QueryStatus.cs
2016-11-04 13:55:48 +01:00

20 lines
No EOL
401 B
C#

namespace Yavsc.Interfaces.Workflow
{
/// <summary>
/// Status,
/// should be associated to any
/// client user query to a provider user or
/// other external entity.
/// </summary>
public enum QueryStatus: int
{
Inserted,
OwnerValidated,
Visited,
Rejected,
Accepted,
InProgress,
Failed,
Success
}
}