refactoring

This commit is contained in:
Paul Schneider 2017-04-08 00:32:23 +02:00
commit b828b06904
10 changed files with 125 additions and 26 deletions

View file

@ -0,0 +1,20 @@
namespace YavscLib
{
/// <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
}
}