Add XML docs to small model enums and remove CS1591 suppressions

This commit is contained in:
mbastian77
2026-07-18 10:08:55 +02:00
parent dd0b273b26
commit 8ac2d1f7bc
8 changed files with 88 additions and 15 deletions
+14 -2
View File
@@ -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
}
}