added startup job trigger (#12)

This commit is contained in:
Marius Nechifor
2024-11-24 01:47:01 +02:00
committed by GitHub
parent 3e0913b437
commit 599242aa2a
4 changed files with 52 additions and 42 deletions
+6
View File
@@ -0,0 +1,6 @@
namespace Common.Configuration;
public interface IJobConfig : IConfig
{
bool Enabled { get; init; }
}