diff options
| author | mbastian77 <michael.bastian@visop.de> | 2026-07-15 16:03:56 +0200 |
|---|---|---|
| committer | mbastian77 <michael.bastian@visop.de> | 2026-07-15 16:03:56 +0200 |
| commit | 5cbafa566dab227214f60924332cb0e4bfa75b32 (patch) | |
| tree | 6c57889b366c9b09698aaaf9995982ed69e6ec0e /MediaBrowser.Model/Session/PlaystateRequest.cs | |
| parent | b6882c86dccfdda94991f0ed978c6f0d0fe4c4ea (diff) | |
Add XML docs to small session model types and remove CS1591 suppressions
Diffstat (limited to 'MediaBrowser.Model/Session/PlaystateRequest.cs')
| -rw-r--r-- | MediaBrowser.Model/Session/PlaystateRequest.cs | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/MediaBrowser.Model/Session/PlaystateRequest.cs b/MediaBrowser.Model/Session/PlaystateRequest.cs index ba2c024b76..040affa144 100644 --- a/MediaBrowser.Model/Session/PlaystateRequest.cs +++ b/MediaBrowser.Model/Session/PlaystateRequest.cs @@ -1,11 +1,18 @@ -#pragma warning disable CS1591 - namespace MediaBrowser.Model.Session { + /// <summary> + /// A request to change the playstate of a session. + /// </summary> public class PlaystateRequest { + /// <summary> + /// Gets or sets the playstate command. + /// </summary> public PlaystateCommand Command { get; set; } + /// <summary> + /// Gets or sets the seek position in ticks. + /// </summary> public long? SeekPositionTicks { get; set; } /// <summary> |
