mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-03-26 10:03:12 -04:00
23 lines
605 B
C#
23 lines
605 B
C#
namespace Cleanuparr.Api.Features.Notifications.Contracts.Requests;
|
|
|
|
public abstract record UpdateNotificationProviderRequestBase
|
|
{
|
|
public string Name { get; init; } = string.Empty;
|
|
|
|
public bool IsEnabled { get; init; }
|
|
|
|
public bool OnFailedImportStrike { get; init; }
|
|
|
|
public bool OnStalledStrike { get; init; }
|
|
|
|
public bool OnSlowStrike { get; init; }
|
|
|
|
public bool OnQueueItemDeleted { get; init; }
|
|
|
|
public bool OnDownloadCleaned { get; init; }
|
|
|
|
public bool OnCategoryChanged { get; init; }
|
|
|
|
public bool OnSearchTriggered { get; init; }
|
|
}
|