15 lines
294 B
C#
15 lines
294 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Microsoft.eShopOnContainers.BuildingBlocks.IntegrationEventLogEF
|
|
{
|
|
public enum EventStateEnum
|
|
{
|
|
NotPublished = 0,
|
|
InProgress = 1,
|
|
Published = 2,
|
|
PublishedFailed = 3
|
|
}
|
|
}
|