diff options
| author | mbastian77 <michael.bastian@visop.de> | 2026-07-18 10:08:55 +0200 |
|---|---|---|
| committer | mbastian77 <michael.bastian@visop.de> | 2026-07-18 10:08:55 +0200 |
| commit | 8ac2d1f7bccfb265378888ec265304922154c90b (patch) | |
| tree | 26b3d6e93aaf6d25d0f21e7ea159e9ab4a94a5ea /MediaBrowser.Model/LiveTv/DayPattern.cs | |
| parent | dd0b273b2604af0016bd0e135a5276f2d56d39dd (diff) | |
Add XML docs to small model enums and remove CS1591 suppressions
Diffstat (limited to 'MediaBrowser.Model/LiveTv/DayPattern.cs')
| -rw-r--r-- | MediaBrowser.Model/LiveTv/DayPattern.cs | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/MediaBrowser.Model/LiveTv/DayPattern.cs b/MediaBrowser.Model/LiveTv/DayPattern.cs index 17efe39088..dab69e8974 100644 --- a/MediaBrowser.Model/LiveTv/DayPattern.cs +++ b/MediaBrowser.Model/LiveTv/DayPattern.cs @@ -1,11 +1,23 @@ -#pragma warning disable CS1591 - namespace MediaBrowser.Model.LiveTv { + /// <summary> + /// The day pattern of a recurring timer. + /// </summary> public enum DayPattern { + /// <summary> + /// Every day. + /// </summary> Daily, + + /// <summary> + /// Monday through Friday. + /// </summary> Weekdays, + + /// <summary> + /// Saturday and Sunday. + /// </summary> Weekends } } |
