mirror of
https://github.com/Readarr/Readarr
synced 2025-12-25 17:54:14 +01:00
10 lines
208 B
C#
10 lines
208 B
C#
using System;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace NzbDrone.Http.REST.Attributes
|
|
{
|
|
[AttributeUsage(AttributeTargets.Method)]
|
|
public class RestPostByIdAttribute : HttpPostAttribute
|
|
{
|
|
}
|
|
}
|