diff options
| author | Patrick Barron <18354464+barronpm@users.noreply.github.com> | 2020-09-03 15:57:16 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-03 15:57:16 +0000 |
| commit | 15135dc3b8a2421b6b4d550fa5e141e064d5bf82 (patch) | |
| tree | aaf94c0c43ae32eea429319ee700be8ba0f9ab4c /Emby.Server.Implementations/Services/ServiceMethod.cs | |
| parent | 602e746af058daf317fd8a92b2538619d00d6414 (diff) | |
| parent | 0712a7ef11c24c2aa51bbfa74dfa311af24c90bb (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.cs | 20 |
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; - } - } -} |
