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.ServarrApi/CustomFormat/ICustomFormatApiService.cs

12 lines
441 B

using Recyclarr.TrashGuide.CustomFormat;
namespace Recyclarr.ServarrApi.CustomFormat;
public interface ICustomFormatApiService
{
Task<IList<CustomFormatData>> GetCustomFormats(CancellationToken ct);
Task<CustomFormatData?> CreateCustomFormat(CustomFormatData cf, CancellationToken ct);
Task UpdateCustomFormat(CustomFormatData cf, CancellationToken ct);
Task DeleteCustomFormat(int customFormatId, CancellationToken ct);
}