aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Attributes/ParameterObsoleteAttribute.cs
diff options
context:
space:
mode:
authorJoshua M. Boniface <joshua@boniface.me>2021-01-23 14:45:18 -0500
committerJoshua M. Boniface <joshua@boniface.me>2021-01-23 15:39:35 -0500
commited333dec434aaed93b7df735b5f7f9987bd277d4 (patch)
tree81b81256b7269da0f7c6ddd8359a0e057b2a79aa /Jellyfin.Api/Attributes/ParameterObsoleteAttribute.cs
parentc17c32f9dc5e6e2fd6604118eb2d2f81db1b3629 (diff)
Merge pull request #5069 from crobibero/obsolete-param
(cherry picked from commit 4b6b90e0b14743581c5606a37249d86e291afc95) Signed-off-by: Joshua M. Boniface <joshua@boniface.me>
Diffstat (limited to 'Jellyfin.Api/Attributes/ParameterObsoleteAttribute.cs')
-rw-r--r--Jellyfin.Api/Attributes/ParameterObsoleteAttribute.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/Jellyfin.Api/Attributes/ParameterObsoleteAttribute.cs b/Jellyfin.Api/Attributes/ParameterObsoleteAttribute.cs
new file mode 100644
index 000000000..56c9772b6
--- /dev/null
+++ b/Jellyfin.Api/Attributes/ParameterObsoleteAttribute.cs
@@ -0,0 +1,12 @@
+using System;
+
+namespace Jellyfin.Api.Attributes
+{
+ /// <summary>
+ /// Attribute to mark a parameter as obsolete.
+ /// </summary>
+ [AttributeUsage(AttributeTargets.Parameter)]
+ public class ParameterObsoleteAttribute : Attribute
+ {
+ }
+}