mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-17 10:17:55 -05:00
8 lines
155 B
C#
8 lines
155 B
C#
namespace Common.Configuration;
|
|
|
|
public interface IJobConfig : IConfig
|
|
{
|
|
bool Enabled { get; init; }
|
|
|
|
string CronExpression { get; init; }
|
|
} |