ParameterObsoleteAttribute.cs 261 B

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