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