mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-21 20:29:22 -05:00
8 lines
173 B
C#
8 lines
173 B
C#
namespace Cleanuparr.Persistence.Models.Configuration;
|
|
|
|
public interface IJobConfig : IConfig
|
|
{
|
|
bool Enabled { get; set; }
|
|
|
|
string CronExpression { get; set; }
|
|
} |