mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-21 12:18:59 -05:00
19 lines
549 B
C#
19 lines
549 B
C#
using Cleanuparr.Persistence.Models.Configuration.QueueCleaner;
|
|
|
|
namespace Cleanuparr.Api.Features.QueueCleaner.Contracts.Requests;
|
|
|
|
public sealed record UpdateQueueCleanerConfigRequest
|
|
{
|
|
public bool Enabled { get; init; }
|
|
|
|
public string CronExpression { get; init; } = "0 0/5 * * * ?";
|
|
|
|
public bool UseAdvancedScheduling { get; init; }
|
|
|
|
public FailedImportConfig FailedImport { get; init; } = new();
|
|
|
|
public ushort DownloadingMetadataMaxStrikes { get; init; }
|
|
|
|
public List<string> IgnoredDownloads { get; set; } = [];
|
|
}
|