Notify clients when campaign ends

This commit is contained in:
2025-11-03 19:11:57 +09:00
parent ae4d30d27b
commit a91dd6d034
5 changed files with 47 additions and 1 deletions

View File

@ -1,4 +1,6 @@
namespace Hcs.WebApp.BackgroundServices.CampaignManagers
using Hcs.WebApp.Data.Hcs;
namespace Hcs.WebApp.BackgroundServices.CampaignManagers
{
public interface IManager
{
@ -9,6 +11,8 @@
Ended
}
public Campaign Campaign { get; }
public ManagerState State { get; }
Task ProcessAsync();