jellyfin/MediaBrowser.Controller/Channels/IHasCacheKey.cs

15 lines
355 B
C#
Raw Normal View History

#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 09:56:51 -04:00
string? GetCacheKey(string? userId);
2018-12-27 18:27:57 -05:00
}
}