2021-01-20 23:24:15 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace Jellyfin.Api.Attributes
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Attribute to mark a parameter as obsolete.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[AttributeUsage(AttributeTargets.Parameter)]
|
2021-11-16 15:31:57 +00:00
|
|
|
|
public sealed class ParameterObsoleteAttribute : Attribute
|
2021-01-20 23:24:15 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
2021-01-21 14:01:51 +00:00
|
|
|
|
}
|