mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 02:18:54 -07:00
12 lines
238 B
C#
12 lines
238 B
C#
using System;
|
|
|
|
namespace Jellyfin.Api.Attributes;
|
|
|
|
/// <summary>
|
|
/// Attribute to mark a parameter as obsolete.
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Parameter)]
|
|
public sealed class ParameterObsoleteAttribute : Attribute
|
|
{
|
|
}
|