14 lines
270 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Text;
namespace Microsoft.eShopOnContainers.BuildingBlocks.IntegrationEventLogEF
{
public enum EventStateEnum
{
NotPublished = 0,
Published = 1,
PublishedFailed = 2
}
}