zeroframework/Services/DeviceCenter/ZeroFramework.DeviceCenter.Infrastructure/IntegrationEvents/IntegrationEventStatus.cs
2023-12-05 17:22:48 +08:00

13 lines
231 B
C#

namespace ZeroFramework.DeviceCenter.Infrastructure.IntegrationEvents
{
public enum IntegrationEventStatus
{
NotPublished = 0,
InProgress = 1,
Published = 2,
PublishedFailed = 3
}
}