ParameterObsoleteAttribute.cs 235 B

1234567891011
  1. using System;
  2. namespace Jellyfin.Api.Attributes;
  3. /// <summary>
  4. /// Attribute to mark a parameter as obsolete.
  5. /// </summary>
  6. [AttributeUsage(AttributeTargets.Parameter)]
  7. public sealed class ParameterObsoleteAttribute : Attribute
  8. {
  9. }