|
@@ -24,7 +24,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>
|
|
@@ -50,7 +50,7 @@ namespace Jellyfin.Data.Entities
|
|
|
*************************************************************************/
|
|
|
|
|
|
/// <summary>
|
|
|
- /// Backing field for Id
|
|
|
+ /// Backing field for Id.
|
|
|
/// </summary>
|
|
|
internal int _Id;
|
|
|
/// <summary>
|
|
@@ -63,7 +63,7 @@ namespace Jellyfin.Data.Entities
|
|
|
partial void GetId(ref int result);
|
|
|
|
|
|
/// <summary>
|
|
|
- /// Identity, Indexed, Required
|
|
|
+ /// Identity, Indexed, Required.
|
|
|
/// </summary>
|
|
|
[Key]
|
|
|
[Required]
|
|
@@ -88,7 +88,7 @@ namespace Jellyfin.Data.Entities
|
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
|
- /// Backing field for Title
|
|
|
+ /// Backing field for Title.
|
|
|
/// </summary>
|
|
|
protected string _Title;
|
|
|
/// <summary>
|
|
@@ -102,7 +102,7 @@ namespace Jellyfin.Data.Entities
|
|
|
|
|
|
/// <summary>
|
|
|
/// Required, Max length = 1024
|
|
|
- /// The title or name of the object
|
|
|
+ /// The title or name of the object.
|
|
|
/// </summary>
|
|
|
[Required]
|
|
|
[MaxLength(1024)]
|
|
@@ -127,7 +127,7 @@ namespace Jellyfin.Data.Entities
|
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
|
- /// Backing field for OriginalTitle
|
|
|
+ /// Backing field for OriginalTitle.
|
|
|
/// </summary>
|
|
|
protected string _OriginalTitle;
|
|
|
/// <summary>
|
|
@@ -164,7 +164,7 @@ namespace Jellyfin.Data.Entities
|
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
|
- /// Backing field for SortTitle
|
|
|
+ /// Backing field for SortTitle.
|
|
|
/// </summary>
|
|
|
protected string _SortTitle;
|
|
|
/// <summary>
|
|
@@ -201,7 +201,7 @@ namespace Jellyfin.Data.Entities
|
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
|
- /// Backing field for Language
|
|
|
+ /// Backing field for Language.
|
|
|
/// </summary>
|
|
|
protected string _Language;
|
|
|
/// <summary>
|
|
@@ -215,7 +215,7 @@ namespace Jellyfin.Data.Entities
|
|
|
|
|
|
/// <summary>
|
|
|
/// Required, Min length = 3, Max length = 3
|
|
|
- /// ISO-639-3 3-character language codes
|
|
|
+ /// ISO-639-3 3-character language codes.
|
|
|
/// </summary>
|
|
|
[Required]
|
|
|
[MinLength(3)]
|
|
@@ -241,7 +241,7 @@ namespace Jellyfin.Data.Entities
|
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
|
- /// Backing field for ReleaseDate
|
|
|
+ /// Backing field for ReleaseDate.
|
|
|
/// </summary>
|
|
|
protected DateTimeOffset? _ReleaseDate;
|
|
|
/// <summary>
|
|
@@ -273,7 +273,7 @@ namespace Jellyfin.Data.Entities
|
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
|
- /// Backing field for DateAdded
|
|
|
+ /// Backing field for DateAdded.
|
|
|
/// </summary>
|
|
|
protected DateTime _DateAdded;
|
|
|
/// <summary>
|
|
@@ -286,7 +286,7 @@ namespace Jellyfin.Data.Entities
|
|
|
partial void GetDateAdded(ref DateTime result);
|
|
|
|
|
|
/// <summary>
|
|
|
- /// Required
|
|
|
+ /// Required.
|
|
|
/// </summary>
|
|
|
[Required]
|
|
|
public DateTime DateAdded
|
|
@@ -309,7 +309,7 @@ namespace Jellyfin.Data.Entities
|
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
|
- /// Backing field for DateModified
|
|
|
+ /// Backing field for DateModified.
|
|
|
/// </summary>
|
|
|
protected DateTime _DateModified;
|
|
|
/// <summary>
|
|
@@ -322,7 +322,7 @@ namespace Jellyfin.Data.Entities
|
|
|
partial void GetDateModified(ref DateTime result);
|
|
|
|
|
|
/// <summary>
|
|
|
- /// Required
|
|
|
+ /// Required.
|
|
|
/// </summary>
|
|
|
[Required]
|
|
|
public DateTime DateModified
|
|
@@ -345,7 +345,7 @@ namespace Jellyfin.Data.Entities
|
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
|
- /// Required, ConcurrenyToken
|
|
|
+ /// Required, ConcurrenyToken.
|
|
|
/// </summary>
|
|
|
[ConcurrencyCheck]
|
|
|
[Required]
|