mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-03-25 09:31:38 -04:00
19 lines
482 B
C#
19 lines
482 B
C#
namespace Cleanuparr.Infrastructure.Features.Notifications.Models;
|
|
|
|
public sealed record NotificationEventFlags
|
|
{
|
|
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; }
|
|
}
|