mirror of
https://github.com/Readarr/Readarr
synced 2025-12-30 04:06:53 +01:00
14 lines
304 B
C#
14 lines
304 B
C#
using System;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace NzbDrone.Http.REST.Attributes
|
|
{
|
|
[AttributeUsage(AttributeTargets.Method)]
|
|
public class RestDeleteByIdAttribute : HttpDeleteAttribute
|
|
{
|
|
public RestDeleteByIdAttribute()
|
|
: base("{id:int}")
|
|
{
|
|
}
|
|
}
|
|
}
|