aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities
diff options
context:
space:
mode:
authorShadowghost <Ghost_of_Stone@web.de>2023-03-03 10:42:24 +0100
committerShadowghost <Ghost_of_Stone@web.de>2023-03-03 10:42:24 +0100
commit80b8661008f271efad595e75de7b0c50971b131b (patch)
treeb756d3993b4482fbf4ef91102be322cc542596ec /MediaBrowser.Model/Entities
parent7af6694594cfc71644b336a2bba459c2f439369b (diff)
parent0de37e2ac2fcde85171336ac70d721060012fd78 (diff)
Merge branch 'master' into network-rewrite
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; }
}
}