16 lines
391 B
C#
16 lines
391 B
C#
// <copyright file="ParameterObsoleteAttribute.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
using System;
|
|
|
|
namespace Jellyfin.Api.Attributes;
|
|
|
|
/// <summary>
|
|
/// Attribute to mark a parameter as obsolete.
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Parameter)]
|
|
public sealed class ParameterObsoleteAttribute : Attribute
|
|
{
|
|
}
|