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>
|
2024-03-13 14:56:51 +01:00
|
|
|
string? GetCacheKey(string? userId);
|
2018-12-27 18:27:57 -05:00
|
|
|
}
|
|
|
|
|
}
|