Files
pgsql-jellyfin/Jellyfin.Api/Attributes/ParameterObsoleteAttribute.cs
T

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
{
}