mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-23 22:25:56 -04:00
10 lines
286 B
C#
10 lines
286 B
C#
namespace NzbDrone.Core.DecisionEngine;
|
|
|
|
public class DownloadRejection : Rejection<DownloadRejectionReason>
|
|
{
|
|
public DownloadRejection(DownloadRejectionReason reason, string message, RejectionType type = RejectionType.Permanent)
|
|
: base(reason, message, type)
|
|
{
|
|
}
|
|
}
|