diff options
| author | Bond_009 <bond.009@outlook.com> | 2024-05-15 18:29:13 +0200 |
|---|---|---|
| committer | Bond_009 <bond.009@outlook.com> | 2024-08-05 17:17:57 +0200 |
| commit | e221c1d25d640eaac01220b3f5b1422f4c11ed46 (patch) | |
| tree | 6f4b1cc1b9ed1310e6bb4ab47ac6358672a8f7a7 | |
| parent | a90316b4d969eb2ce82bfa4e116e5cc61aa7ad03 (diff) | |
Enable nullable for NextUpQuery
| -rw-r--r-- | MediaBrowser.Model/Querying/NextUpQuery.cs | 21 |
1 files changed, 1 insertions, 20 deletions
diff --git a/MediaBrowser.Model/Querying/NextUpQuery.cs b/MediaBrowser.Model/Querying/NextUpQuery.cs index 622c49526..8dece28a0 100644 --- a/MediaBrowser.Model/Querying/NextUpQuery.cs +++ b/MediaBrowser.Model/Querying/NextUpQuery.cs @@ -1,4 +1,3 @@ -#nullable disable #pragma warning disable CS1591 using System; @@ -23,7 +22,7 @@ namespace MediaBrowser.Model.Querying /// Gets or sets the user. /// </summary> /// <value>The user.</value> - public User User { get; set; } + public required User User { get; set; } /// <summary> /// Gets or sets the parent identifier. @@ -50,24 +49,6 @@ namespace MediaBrowser.Model.Querying public int? Limit { get; set; } /// <summary> - /// gets or sets the fields to return within the items, in addition to basic information. - /// </summary> - /// <value>The fields.</value> - public ItemFields[] Fields { get; set; } - - /// <summary> - /// Gets or sets a value indicating whether [enable images]. - /// </summary> - /// <value><c>null</c> if [enable images] contains no value, <c>true</c> if [enable images]; otherwise, <c>false</c>.</value> - public bool? EnableImages { get; set; } - - /// <summary> - /// Gets or sets the image type limit. - /// </summary> - /// <value>The image type limit.</value> - public int? ImageTypeLimit { get; set; } - - /// <summary> /// Gets or sets the enable image types. /// </summary> /// <value>The enable image types.</value> |
