12 lines
260 B
C#
12 lines
260 B
C#
|
using System;
|
|||
|
|
|||
|
namespace Jellyfin.Api.Attributes
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Attribute to mark a parameter as obsolete.
|
|||
|
/// </summary>
|
|||
|
[AttributeUsage(AttributeTargets.Parameter)]
|
|||
|
public class ParameterObsoleteAttribute : Attribute
|
|||
|
{
|
|||
|
}
|
|||
|
}
|