aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities
diff options
context:
space:
mode:
authorCody Robibero <cody@robibe.ro>2023-02-23 07:04:44 -0700
committerGitHub <noreply@github.com>2023-02-23 07:04:44 -0700
commitecb5c48538fb46b4aab744d165bd525bd8a53cd3 (patch)
treef2fedbedf3556cc1c3c1036ea14fd373f52c15d1 /MediaBrowser.Model/Entities
parenteb3d187f27c34112689d37c50a1f734835a33ef3 (diff)
parent6300d01fcceba56932741251443f5b2aa4f76de2 (diff)
Merge pull request #8526 from Shadowghost/rating-overhaul
Diffstat (limited to 'MediaBrowser.Model/Entities')
-rw-r--r--MediaBrowser.Model/Entities/ParentalRating.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Model/Entities/ParentalRating.cs b/MediaBrowser.Model/Entities/ParentalRating.cs
index 17b2868a3..c92640818 100644
--- a/MediaBrowser.Model/Entities/ParentalRating.cs
+++ b/MediaBrowser.Model/Entities/ParentalRating.cs
@@ -12,7 +12,7 @@ namespace MediaBrowser.Model.Entities
{
}
- public ParentalRating(string name, int value)
+ public ParentalRating(string name, int? value)
{
Name = name;
Value = value;
@@ -28,6 +28,6 @@ namespace MediaBrowser.Model.Entities
/// Gets or sets the value.
/// </summary>
/// <value>The value.</value>
- public int Value { get; set; }
+ public int? Value { get; set; }
}
}