blob: 4cdda38bd9421fe109225e93e30484ca85ec1633 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
namespace MediaBrowser.Controller.Channels
{
/// <summary>
/// Interface for channels that provide a cache key.
/// </summary>
public interface IHasCacheKey
{
/// <summary>
/// Gets the cache key.
/// </summary>
/// <param name="userId">The user identifier.</param>
/// <returns>The cache key.</returns>
string? GetCacheKey(string? userId);
}
}
|