Files
Cleanuparr/code/Common/Configuration/IJobConfig.cs
2025-06-02 12:59:33 +03:00

8 lines
155 B
C#

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