IHasCacheKey.cs 372 B

12345678910111213141516
  1. #nullable disable
  2. #pragma warning disable CS1591
  3. namespace MediaBrowser.Controller.Channels
  4. {
  5. public interface IHasCacheKey
  6. {
  7. /// <summary>
  8. /// Gets the cache key.
  9. /// </summary>
  10. /// <param name="userId">The user identifier.</param>
  11. /// <returns>System.String.</returns>
  12. string GetCacheKey(string userId);
  13. }
  14. }