2017-03-09 15:56:34 +01:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace Microsoft.eShopOnContainers.Services.Common.Infrastructure
|
|
|
|
|
{
|
2017-03-14 09:47:36 +01:00
|
|
|
|
public enum EventStateEnum
|
|
|
|
|
{
|
|
|
|
|
NotSend = 0,
|
|
|
|
|
Sent = 1,
|
|
|
|
|
SendingFailed = 2
|
2017-03-09 15:56:34 +01:00
|
|
|
|
}
|
|
|
|
|
}
|