// // Copyright (c) PlaceholderCompany. All rights reserved. // namespace Jellyfin.Api.Attributes; using System; /// /// Attribute to mark a parameter as obsolete. /// [AttributeUsage(AttributeTargets.Parameter)] public sealed class ParameterObsoleteAttribute : Attribute { }