diff options
| author | Cody Robibero <cody@robibe.ro> | 2021-11-15 15:45:21 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-15 15:45:21 -0700 |
| commit | 06c82973c6c8a75df1ffee01ff52b399c59354d3 (patch) | |
| tree | f84d01974fbfa8fdfcd3593350450ae0bb858f59 | |
| parent | f638cd08ea8132457a501edd983441c8d9193909 (diff) | |
| parent | ca99a2761119572ca6a2505f0d9ced08714bb057 (diff) | |
Merge pull request #6854 from 1337joe/add-customprefs-set
| -rw-r--r-- | MediaBrowser.Model/Dto/DisplayPreferencesDto.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Model/Dto/DisplayPreferencesDto.cs b/MediaBrowser.Model/Dto/DisplayPreferencesDto.cs index 6a4453536..90163ae91 100644 --- a/MediaBrowser.Model/Dto/DisplayPreferencesDto.cs +++ b/MediaBrowser.Model/Dto/DisplayPreferencesDto.cs @@ -63,10 +63,10 @@ namespace MediaBrowser.Model.Dto public int PrimaryImageWidth { get; set; } /// <summary> - /// Gets the custom prefs. + /// Gets or sets the custom prefs. /// </summary> /// <value>The custom prefs.</value> - public Dictionary<string, string?> CustomPrefs { get; } + public Dictionary<string, string?> CustomPrefs { get; set; } /// <summary> /// Gets or sets the scroll direction. |
