aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Attributes/ParameterObsoleteAttribute.cs
blob: 56c9772b6d590953a84eb1b07fe48e1b1e01dd7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using System;

namespace Jellyfin.Api.Attributes
{
    /// <summary>
    /// Attribute to mark a parameter as obsolete.
    /// </summary>
    [AttributeUsage(AttributeTargets.Parameter)]
    public class ParameterObsoleteAttribute : Attribute
    {
    }
}