diff options
| author | mbastian77 <michael.bastian@visop.de> | 2026-07-15 16:02:12 +0200 |
|---|---|---|
| committer | mbastian77 <michael.bastian@visop.de> | 2026-07-15 16:02:12 +0200 |
| commit | 0d3cf0169e198b51d90f106317a87116ac5e179e (patch) | |
| tree | 6ee12133b0cac00c26fe101fb2e8c34292ede6ef /MediaBrowser.Controller/Channels/IHasCacheKey.cs | |
| parent | b6882c86dccfdda94991f0ed978c6f0d0fe4c4ea (diff) | |
Add XML docs to small channel types and remove CS1591 suppressions
Diffstat (limited to 'MediaBrowser.Controller/Channels/IHasCacheKey.cs')
| -rw-r--r-- | MediaBrowser.Controller/Channels/IHasCacheKey.cs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/MediaBrowser.Controller/Channels/IHasCacheKey.cs b/MediaBrowser.Controller/Channels/IHasCacheKey.cs index 7d5207c34a..4cdda38bd9 100644 --- a/MediaBrowser.Controller/Channels/IHasCacheKey.cs +++ b/MediaBrowser.Controller/Channels/IHasCacheKey.cs @@ -1,14 +1,15 @@ -#pragma warning disable CS1591 - namespace MediaBrowser.Controller.Channels { + /// <summary> + /// Interface for channels that provide a cache key. + /// </summary> public interface IHasCacheKey { /// <summary> /// Gets the cache key. /// </summary> /// <param name="userId">The user identifier.</param> - /// <returns>System.String.</returns> + /// <returns>The cache key.</returns> string? GetCacheKey(string? userId); } } |
