Snowflake/RPG.Services.Core/RPGServiceBase.cs
2024-01-18 19:18:25 +03:00

15 lines
385 B
C#

using Microsoft.Extensions.Hosting;
namespace RPG.Services.Core;
public abstract class RPGServiceBase : IHostedService
{
public virtual Task StartAsync(CancellationToken cancellationToken)
{
throw new NotImplementedException();
}
public virtual Task StopAsync(CancellationToken cancellationToken)
{
throw new NotImplementedException();
}
}