2021-05-07 00:39:20 +02:00
|
|
|
#nullable disable
|
|
|
|
|
|
2020-08-22 21:56:24 +02:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
|
2018-12-27 18:27:57 -05:00
|
|
|
namespace MediaBrowser.Controller.Channels
|
|
|
|
|
{
|
|
|
|
|
public interface IHasCacheKey
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the cache key.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="userId">The user identifier.</param>
|
|
|
|
|
/// <returns>System.String.</returns>
|
|
|
|
|
string GetCacheKey(string userId);
|
|
|
|
|
}
|
|
|
|
|
}
|