Readarr/src/Readarr.Http/REST/Attributes/RestDeleteByIdAttribute.cs
2021-03-12 12:55:48 +00:00

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}")
{
}
}
}