aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Services/ServiceMethod.cs
diff options
context:
space:
mode:
authorPatrick Barron <18354464+barronpm@users.noreply.github.com>2020-09-03 15:57:16 +0000
committerGitHub <noreply@github.com>2020-09-03 15:57:16 +0000
commit15135dc3b8a2421b6b4d550fa5e141e064d5bf82 (patch)
treeaaf94c0c43ae32eea429319ee700be8ba0f9ab4c /Emby.Server.Implementations/Services/ServiceMethod.cs
parent602e746af058daf317fd8a92b2538619d00d6414 (diff)
parent0712a7ef11c24c2aa51bbfa74dfa311af24c90bb (diff)
Merge branch 'master' into jellyfin-data-warnings
Diffstat (limited to 'Emby.Server.Implementations/Services/ServiceMethod.cs')
-rw-r--r--Emby.Server.Implementations/Services/ServiceMethod.cs20
1 files changed, 0 insertions, 20 deletions
diff --git a/Emby.Server.Implementations/Services/ServiceMethod.cs b/Emby.Server.Implementations/Services/ServiceMethod.cs
deleted file mode 100644
index 5116cc04f..000000000
--- a/Emby.Server.Implementations/Services/ServiceMethod.cs
+++ /dev/null
@@ -1,20 +0,0 @@
-#pragma warning disable CS1591
-
-using System;
-
-namespace Emby.Server.Implementations.Services
-{
- public class ServiceMethod
- {
- public string Id { get; set; }
-
- public ActionInvokerFn ServiceAction { get; set; }
-
- public MediaBrowser.Model.Services.IHasRequestFilter[] RequestFilters { get; set; }
-
- public static string Key(Type serviceType, string method, string requestDtoName)
- {
- return serviceType.FullName + " " + method.ToUpperInvariant() + " " + requestDtoName;
- }
- }
-}