yavsc/Yavsc/Interfaces/Workflow/QueryStatus.cs

20 lines
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
}
}