19 lines
338 B
C#
19 lines
338 B
C#
namespace Hcs.WebApp.BackgroundServices.CampaignManagers
|
|
{
|
|
public interface IManager
|
|
{
|
|
public enum ManagerState
|
|
{
|
|
Created,
|
|
Started,
|
|
Ended
|
|
}
|
|
|
|
public ManagerState State { get; }
|
|
|
|
Task ProcessAsync();
|
|
|
|
Task EndWithFailAsync(Exception e);
|
|
}
|
|
}
|