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
402 B

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