2
0

IHasCacheKey.cs 321 B

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