aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Data/Entities/SeriesMetadata.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Jellyfin.Data/Entities/SeriesMetadata.cs')
-rw-r--r--Jellyfin.Data/Entities/SeriesMetadata.cs14
1 files changed, 9 insertions, 5 deletions
diff --git a/Jellyfin.Data/Entities/SeriesMetadata.cs b/Jellyfin.Data/Entities/SeriesMetadata.cs
index bb31c2e4e..e72de07fd 100644
--- a/Jellyfin.Data/Entities/SeriesMetadata.cs
+++ b/Jellyfin.Data/Entities/SeriesMetadata.cs
@@ -28,7 +28,7 @@ namespace Jellyfin.Data.Entities
}
/// <summary>
- /// Public constructor with required data
+ /// Public constructor with required data.
/// </summary>
/// <param name="title">The title or name of the object</param>
/// <param name="language">ISO-639-3 3-character language codes</param>
@@ -65,7 +65,7 @@ namespace Jellyfin.Data.Entities
*************************************************************************/
/// <summary>
- /// Backing field for Outline
+ /// Backing field for Outline.
/// </summary>
protected string _Outline;
/// <summary>
@@ -90,6 +90,7 @@ namespace Jellyfin.Data.Entities
GetOutline(ref value);
return (_Outline = value);
}
+
set
{
string oldValue = _Outline;
@@ -102,7 +103,7 @@ namespace Jellyfin.Data.Entities
}
/// <summary>
- /// Backing field for Plot
+ /// Backing field for Plot.
/// </summary>
protected string _Plot;
/// <summary>
@@ -127,6 +128,7 @@ namespace Jellyfin.Data.Entities
GetPlot(ref value);
return (_Plot = value);
}
+
set
{
string oldValue = _Plot;
@@ -139,7 +141,7 @@ namespace Jellyfin.Data.Entities
}
/// <summary>
- /// Backing field for Tagline
+ /// Backing field for Tagline.
/// </summary>
protected string _Tagline;
/// <summary>
@@ -164,6 +166,7 @@ namespace Jellyfin.Data.Entities
GetTagline(ref value);
return (_Tagline = value);
}
+
set
{
string oldValue = _Tagline;
@@ -176,7 +179,7 @@ namespace Jellyfin.Data.Entities
}
/// <summary>
- /// Backing field for Country
+ /// Backing field for Country.
/// </summary>
protected string _Country;
/// <summary>
@@ -201,6 +204,7 @@ namespace Jellyfin.Data.Entities
GetCountry(ref value);
return (_Country = value);
}
+
set
{
string oldValue = _Country;