IHasCacheKey.cs 355 B

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