2021-01-15 14:45:24 +05:30
|
|
|
|
namespace Microsoft.eShopOnContainers.BuildingBlocks.IntegrationEventLogEF
|
2017-03-09 15:56:34 +01:00
|
|
|
|
{
|
2017-03-14 09:47:36 +01:00
|
|
|
|
public enum EventStateEnum
|
|
|
|
|
{
|
2017-03-15 18:42:47 -07:00
|
|
|
|
NotPublished = 0,
|
2018-10-11 17:16:31 +02:00
|
|
|
|
InProgress = 1,
|
|
|
|
|
Published = 2,
|
|
|
|
|
PublishedFailed = 3
|
2017-03-09 15:56:34 +01:00
|
|
|
|
}
|
|
|
|
|
}
|