From f271e358a195c8bb3e931e22ca813265c7bc1f05 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Fri, 6 Jun 2014 13:14:02 -0400 Subject: update channels --- MediaBrowser.Controller/Channels/IHasCacheKey.cs | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 MediaBrowser.Controller/Channels/IHasCacheKey.cs (limited to 'MediaBrowser.Controller/Channels/IHasCacheKey.cs') diff --git a/MediaBrowser.Controller/Channels/IHasCacheKey.cs b/MediaBrowser.Controller/Channels/IHasCacheKey.cs new file mode 100644 index 000000000..6376d2f91 --- /dev/null +++ b/MediaBrowser.Controller/Channels/IHasCacheKey.cs @@ -0,0 +1,13 @@ + +namespace MediaBrowser.Controller.Channels +{ + public interface IHasCacheKey + { + /// + /// Gets the cache key. + /// + /// The user identifier. + /// System.String. + string GetCacheKey(string userId); + } +} -- cgit v1.2.3