Accounting/Assets/Plugins/ETTask/IAwaiter.cs

14 lines
356 B
C#
Raw Permalink Normal View History

2023-09-24 21:35:44 +08:00
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,
}
}