13 lines
231 B
C#
13 lines
231 B
C#
namespace ZeroFramework.DeviceCenter.Infrastructure.IntegrationEvents
|
|
{
|
|
public enum IntegrationEventStatus
|
|
{
|
|
NotPublished = 0,
|
|
|
|
InProgress = 1,
|
|
|
|
Published = 2,
|
|
|
|
PublishedFailed = 3
|
|
}
|
|
} |