You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
recyclarr/src/Recyclarr.Http/FlurlSpecificEventHandler.cs

12 lines
373 B

using System.Diagnostics.CodeAnalysis;
using Flurl.Http;
namespace Recyclarr.Http;
[SuppressMessage("Naming", "CA1711:Identifiers should not have incorrect suffix", Justification =
"Naming convention borrowed from and determined by Flurl")]
public abstract class FlurlSpecificEventHandler : FlurlEventHandler
{
public abstract FlurlEventType EventType { get; }
}