aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model
diff options
context:
space:
mode:
authorCody Robibero <cody@robibe.ro>2021-11-11 07:16:57 -0700
committerCody Robibero <cody@robibe.ro>2021-11-11 07:34:36 -0700
commit3de86ffdb4194736a70e363412dac3de1d08abec (patch)
treecbe13a1e9fadcdb32c8937e8027ce3bd49ab2358 /MediaBrowser.Model
parent4c88bf3fe3ef2e02632655acfcb8db18fd9f7d82 (diff)
Fix nullability on DisplayPreferencesDto
Remove duplicate, fix namespace
Diffstat (limited to 'MediaBrowser.Model')
-rw-r--r--MediaBrowser.Model/Dto/DisplayPreferencesDto.cs (renamed from MediaBrowser.Model/Entities/DisplayPreferencesDto.cs)19
1 files changed, 9 insertions, 10 deletions
diff --git a/MediaBrowser.Model/Entities/DisplayPreferencesDto.cs b/MediaBrowser.Model/Dto/DisplayPreferencesDto.cs
index 1f7fe3030..6a4453536 100644
--- a/MediaBrowser.Model/Entities/DisplayPreferencesDto.cs
+++ b/MediaBrowser.Model/Dto/DisplayPreferencesDto.cs
@@ -1,8 +1,7 @@
-#nullable disable
using System.Collections.Generic;
using Jellyfin.Data.Enums;
-namespace MediaBrowser.Model.Entities
+namespace MediaBrowser.Model.Dto
{
/// <summary>
/// Defines the display preferences for any item that supports them (usually Folders).
@@ -18,32 +17,32 @@ namespace MediaBrowser.Model.Entities
PrimaryImageHeight = 250;
PrimaryImageWidth = 250;
ShowBackdrop = true;
- CustomPrefs = new Dictionary<string, string>();
+ CustomPrefs = new Dictionary<string, string?>();
}
/// <summary>
/// Gets or sets the user id.
/// </summary>
/// <value>The user id.</value>
- public string Id { get; set; }
+ public string? Id { get; set; }
/// <summary>
/// Gets or sets the type of the view.
/// </summary>
/// <value>The type of the view.</value>
- public string ViewType { get; set; }
+ public string? ViewType { get; set; }
/// <summary>
/// Gets or sets the sort by.
/// </summary>
/// <value>The sort by.</value>
- public string SortBy { get; set; }
+ public string? SortBy { get; set; }
/// <summary>
/// Gets or sets the index by.
/// </summary>
/// <value>The index by.</value>
- public string IndexBy { get; set; }
+ public string? IndexBy { get; set; }
/// <summary>
/// Gets or sets a value indicating whether [remember indexing].
@@ -64,10 +63,10 @@ namespace MediaBrowser.Model.Entities
public int PrimaryImageWidth { get; set; }
/// <summary>
- /// Gets or sets the custom prefs.
+ /// Gets the custom prefs.
/// </summary>
/// <value>The custom prefs.</value>
- public Dictionary<string, string> CustomPrefs { get; set; }
+ public Dictionary<string, string?> CustomPrefs { get; }
/// <summary>
/// Gets or sets the scroll direction.
@@ -102,6 +101,6 @@ namespace MediaBrowser.Model.Entities
/// <summary>
/// Gets or sets the client.
/// </summary>
- public string Client { get; set; }
+ public string? Client { get; set; }
}
}