forked from zxl/LaboratoryProtection
14 lines
356 B
C#
14 lines
356 B
C#
namespace DragonSoul.Shared
|
|
{
|
|
public enum AwaiterStatus: byte
|
|
{
|
|
/// <summary>The operation has not yet completed.</summary>
|
|
Pending = 0,
|
|
|
|
/// <summary>The operation completed successfully.</summary>
|
|
Succeeded = 1,
|
|
|
|
/// <summary>The operation completed with an error.</summary>
|
|
Faulted = 2,
|
|
}
|
|
} |