Files
Cleanuparr/code/Common/Configuration/IJobConfig.cs
2024-11-24 01:47:01 +02:00

6 lines
109 B
C#

namespace Common.Configuration;
public interface IJobConfig : IConfig
{
bool Enabled { get; init; }
}