2017-05-27 16:22:58 +02:00
|
|
|
namespace Yavsc
|
2016-11-04 13:55:48 +01:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Status,
|
|
|
|
|
/// should be associated to any
|
2017-04-08 00:32:23 +02:00
|
|
|
/// client user query to a provider user or
|
2016-11-04 13:55:48 +01:00
|
|
|
/// other external entity.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public enum QueryStatus: int
|
|
|
|
|
{
|
|
|
|
|
Inserted,
|
|
|
|
|
OwnerValidated,
|
|
|
|
|
Visited,
|
|
|
|
|
Rejected,
|
|
|
|
|
Accepted,
|
|
|
|
|
InProgress,
|
2017-04-08 09:17:15 +02:00
|
|
|
|
|
|
|
|
// final states
|
2016-11-04 13:55:48 +01:00
|
|
|
Failed,
|
|
|
|
|
Success
|
|
|
|
|
}
|
2017-04-08 00:32:23 +02:00
|
|
|
}
|