19 lines
324 B
C#
19 lines
324 B
C#
namespace Hcs.WebApp.BackgroundServices.CampaignManagers
|
|
{
|
|
public interface IManager
|
|
{
|
|
public enum ManagerState
|
|
{
|
|
Created,
|
|
Started,
|
|
Ended
|
|
}
|
|
|
|
public ManagerState State { get; }
|
|
|
|
Task StartAsync();
|
|
|
|
Task CheckStateAsync();
|
|
}
|
|
}
|