yavsc/Yavsc.Abstract/Workflow/QueryStatus.cs

23 lines
406 B
C#

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