//
// Copyright (c) PlaceholderCompany. All rights reserved.
//
#pragma warning disable CS1591
namespace MediaBrowser.Controller.Channels
{
public interface IHasCacheKey
{
///
/// Gets the cache key.
///
/// The user identifier.
/// System.String.
string? GetCacheKey(string? userId);
}
}