namespace MediaBrowser.Controller.Channels
{
///
/// Interface for channels that provide a cache key.
///
public interface IHasCacheKey
{
///
/// Gets the cache key.
///
/// The user identifier.
/// The cache key.
string? GetCacheKey(string? userId);
}
}