jellyfin/MediaBrowser.Controller/Channels/IHasCacheKey.cs

15 lines
355 B
C#
Raw Normal View History

#pragma warning disable CS1591
2018-12-28 00:27:57 +01: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-28 00:27:57 +01:00
}
}