mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-15 23:58:57 +00:00
Add full stop at end of comments (SA1629)
This commit is contained in:
@@ -24,7 +24,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Public constructor with required data
|
||||
/// Public constructor with required data.
|
||||
/// </summary>
|
||||
/// <param name="path"></param>
|
||||
/// <param name="kind"></param>
|
||||
@@ -64,7 +64,7 @@ namespace Jellyfin.Data.Entities
|
||||
*************************************************************************/
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for Id
|
||||
/// Backing field for Id.
|
||||
/// </summary>
|
||||
internal int _Id;
|
||||
/// <summary>
|
||||
@@ -77,7 +77,7 @@ namespace Jellyfin.Data.Entities
|
||||
partial void GetId(ref int result);
|
||||
|
||||
/// <summary>
|
||||
/// Identity, Indexed, Required
|
||||
/// Identity, Indexed, Required.
|
||||
/// </summary>
|
||||
[Key]
|
||||
[Required]
|
||||
@@ -101,7 +101,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for Path
|
||||
/// Backing field for Path.
|
||||
/// </summary>
|
||||
protected string _Path;
|
||||
/// <summary>
|
||||
@@ -139,7 +139,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for Kind
|
||||
/// Backing field for Kind.
|
||||
/// </summary>
|
||||
internal Enums.ArtKind _Kind;
|
||||
/// <summary>
|
||||
@@ -152,7 +152,7 @@ namespace Jellyfin.Data.Entities
|
||||
partial void GetKind(ref Enums.ArtKind result);
|
||||
|
||||
/// <summary>
|
||||
/// Indexed, Required
|
||||
/// Indexed, Required.
|
||||
/// </summary>
|
||||
[Required]
|
||||
public Enums.ArtKind Kind
|
||||
@@ -175,7 +175,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Required, ConcurrenyToken
|
||||
/// Required, ConcurrenyToken.
|
||||
/// </summary>
|
||||
[ConcurrencyCheck]
|
||||
[Required]
|
||||
|
||||
@@ -28,7 +28,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Public constructor with required data
|
||||
/// Public constructor with required data.
|
||||
/// </summary>
|
||||
/// <param name="urlid">This is whats gets displayed in the Urls and API requests. This could also be a string.</param>
|
||||
public Book(Guid urlid, DateTime dateadded)
|
||||
|
||||
@@ -27,7 +27,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>
|
||||
@@ -64,7 +64,7 @@ namespace Jellyfin.Data.Entities
|
||||
*************************************************************************/
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for ISBN
|
||||
/// Backing field for ISBN.
|
||||
/// </summary>
|
||||
protected long? _ISBN;
|
||||
/// <summary>
|
||||
|
||||
@@ -25,7 +25,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Public constructor with required data
|
||||
/// Public constructor with required data.
|
||||
/// </summary>
|
||||
/// <param name="language">ISO-639-3 3-character language codes</param>
|
||||
/// <param name="timestart"></param>
|
||||
@@ -60,7 +60,7 @@ namespace Jellyfin.Data.Entities
|
||||
*************************************************************************/
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for Id
|
||||
/// Backing field for Id.
|
||||
/// </summary>
|
||||
internal int _Id;
|
||||
/// <summary>
|
||||
@@ -73,7 +73,7 @@ namespace Jellyfin.Data.Entities
|
||||
partial void GetId(ref int result);
|
||||
|
||||
/// <summary>
|
||||
/// Identity, Indexed, Required
|
||||
/// Identity, Indexed, Required.
|
||||
/// </summary>
|
||||
[Key]
|
||||
[Required]
|
||||
@@ -98,7 +98,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for Name
|
||||
/// Backing field for Name.
|
||||
/// </summary>
|
||||
protected string _Name;
|
||||
/// <summary>
|
||||
@@ -135,7 +135,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for Language
|
||||
/// Backing field for Language.
|
||||
/// </summary>
|
||||
protected string _Language;
|
||||
/// <summary>
|
||||
@@ -149,7 +149,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)]
|
||||
@@ -175,7 +175,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for TimeStart
|
||||
/// Backing field for TimeStart.
|
||||
/// </summary>
|
||||
protected long _TimeStart;
|
||||
/// <summary>
|
||||
@@ -188,7 +188,7 @@ namespace Jellyfin.Data.Entities
|
||||
partial void GetTimeStart(ref long result);
|
||||
|
||||
/// <summary>
|
||||
/// Required
|
||||
/// Required.
|
||||
/// </summary>
|
||||
[Required]
|
||||
public long TimeStart
|
||||
@@ -211,7 +211,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for TimeEnd
|
||||
/// Backing field for TimeEnd.
|
||||
/// </summary>
|
||||
protected long? _TimeEnd;
|
||||
/// <summary>
|
||||
@@ -243,7 +243,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Required, ConcurrenyToken
|
||||
/// Required, ConcurrenyToken.
|
||||
/// </summary>
|
||||
[ConcurrencyCheck]
|
||||
[Required]
|
||||
|
||||
@@ -9,7 +9,7 @@ namespace Jellyfin.Data.Entities
|
||||
partial void Init();
|
||||
|
||||
/// <summary>
|
||||
/// Default constructor
|
||||
/// Default constructor.
|
||||
/// </summary>
|
||||
public Collection()
|
||||
{
|
||||
@@ -23,7 +23,7 @@ namespace Jellyfin.Data.Entities
|
||||
*************************************************************************/
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for Id
|
||||
/// Backing field for Id.
|
||||
/// </summary>
|
||||
internal int _Id;
|
||||
/// <summary>
|
||||
@@ -36,7 +36,7 @@ namespace Jellyfin.Data.Entities
|
||||
partial void GetId(ref int result);
|
||||
|
||||
/// <summary>
|
||||
/// Identity, Indexed, Required
|
||||
/// Identity, Indexed, Required.
|
||||
/// </summary>
|
||||
[Key]
|
||||
[Required]
|
||||
@@ -61,7 +61,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for Name
|
||||
/// Backing field for Name.
|
||||
/// </summary>
|
||||
protected string _Name;
|
||||
/// <summary>
|
||||
@@ -98,7 +98,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Required, ConcurrenyToken
|
||||
/// Required, ConcurrenyToken.
|
||||
/// </summary>
|
||||
[ConcurrencyCheck]
|
||||
[Required]
|
||||
|
||||
@@ -28,7 +28,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Public constructor with required data
|
||||
/// Public constructor with required data.
|
||||
/// </summary>
|
||||
/// <param name="_collection0"></param>
|
||||
/// <param name="_collectionitem1"></param>
|
||||
@@ -67,7 +67,7 @@ namespace Jellyfin.Data.Entities
|
||||
*************************************************************************/
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for Id
|
||||
/// Backing field for Id.
|
||||
/// </summary>
|
||||
internal int _Id;
|
||||
/// <summary>
|
||||
@@ -80,7 +80,7 @@ namespace Jellyfin.Data.Entities
|
||||
partial void GetId(ref int result);
|
||||
|
||||
/// <summary>
|
||||
/// Identity, Indexed, Required
|
||||
/// Identity, Indexed, Required.
|
||||
/// </summary>
|
||||
[Key]
|
||||
[Required]
|
||||
@@ -105,7 +105,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Required, ConcurrenyToken
|
||||
/// Required, ConcurrenyToken.
|
||||
/// </summary>
|
||||
[ConcurrencyCheck]
|
||||
[Required]
|
||||
@@ -121,7 +121,7 @@ namespace Jellyfin.Data.Entities
|
||||
*************************************************************************/
|
||||
|
||||
/// <summary>
|
||||
/// Required
|
||||
/// Required.
|
||||
/// </summary>
|
||||
[ForeignKey("LibraryItem_Id")]
|
||||
public virtual LibraryItem LibraryItem { get; set; }
|
||||
|
||||
@@ -28,7 +28,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Public constructor with required data
|
||||
/// Public constructor with required data.
|
||||
/// </summary>
|
||||
/// <param name="_moviemetadata0"></param>
|
||||
/// <param name="_seriesmetadata1"></param>
|
||||
@@ -75,7 +75,7 @@ namespace Jellyfin.Data.Entities
|
||||
*************************************************************************/
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for Id
|
||||
/// Backing field for Id.
|
||||
/// </summary>
|
||||
internal int _Id;
|
||||
/// <summary>
|
||||
@@ -88,7 +88,7 @@ namespace Jellyfin.Data.Entities
|
||||
partial void GetId(ref int result);
|
||||
|
||||
/// <summary>
|
||||
/// Identity, Indexed, Required
|
||||
/// Identity, Indexed, Required.
|
||||
/// </summary>
|
||||
[Key]
|
||||
[Required]
|
||||
@@ -113,7 +113,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Required, ConcurrenyToken
|
||||
/// Required, ConcurrenyToken.
|
||||
/// </summary>
|
||||
[ConcurrencyCheck]
|
||||
[Required]
|
||||
|
||||
@@ -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>
|
||||
@@ -60,7 +60,7 @@ namespace Jellyfin.Data.Entities
|
||||
*************************************************************************/
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for Description
|
||||
/// Backing field for Description.
|
||||
/// </summary>
|
||||
protected string _Description;
|
||||
/// <summary>
|
||||
@@ -97,7 +97,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for Headquarters
|
||||
/// Backing field for Headquarters.
|
||||
/// </summary>
|
||||
protected string _Headquarters;
|
||||
/// <summary>
|
||||
@@ -134,7 +134,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for Country
|
||||
/// Backing field for Country.
|
||||
/// </summary>
|
||||
protected string _Country;
|
||||
/// <summary>
|
||||
@@ -171,7 +171,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for Homepage
|
||||
/// Backing field for Homepage.
|
||||
/// </summary>
|
||||
protected string _Homepage;
|
||||
/// <summary>
|
||||
|
||||
@@ -28,7 +28,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Public constructor with required data
|
||||
/// Public constructor with required data.
|
||||
/// </summary>
|
||||
/// <param name="urlid">This is whats gets displayed in the Urls and API requests. This could also be a string.</param>
|
||||
public CustomItem(Guid urlid, DateTime dateadded)
|
||||
|
||||
@@ -23,7 +23,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>
|
||||
|
||||
@@ -31,7 +31,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Public constructor with required data
|
||||
/// Public constructor with required data.
|
||||
/// </summary>
|
||||
/// <param name="urlid">This is whats gets displayed in the Urls and API requests. This could also be a string.</param>
|
||||
/// <param name="_season0"></param>
|
||||
@@ -66,7 +66,7 @@ namespace Jellyfin.Data.Entities
|
||||
*************************************************************************/
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for EpisodeNumber
|
||||
/// Backing field for EpisodeNumber.
|
||||
/// </summary>
|
||||
protected int? _EpisodeNumber;
|
||||
/// <summary>
|
||||
|
||||
@@ -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>
|
||||
@@ -60,7 +60,7 @@ namespace Jellyfin.Data.Entities
|
||||
*************************************************************************/
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for Outline
|
||||
/// Backing field for Outline.
|
||||
/// </summary>
|
||||
protected string _Outline;
|
||||
/// <summary>
|
||||
@@ -97,7 +97,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for Plot
|
||||
/// Backing field for Plot.
|
||||
/// </summary>
|
||||
protected string _Plot;
|
||||
/// <summary>
|
||||
@@ -134,7 +134,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for Tagline
|
||||
/// Backing field for Tagline.
|
||||
/// </summary>
|
||||
protected string _Tagline;
|
||||
/// <summary>
|
||||
|
||||
@@ -25,7 +25,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Public constructor with required data
|
||||
/// Public constructor with required data.
|
||||
/// </summary>
|
||||
/// <param name="name"></param>
|
||||
/// <param name="_metadata0"></param>
|
||||
@@ -56,7 +56,7 @@ namespace Jellyfin.Data.Entities
|
||||
*************************************************************************/
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for Id
|
||||
/// Backing field for Id.
|
||||
/// </summary>
|
||||
internal int _Id;
|
||||
/// <summary>
|
||||
@@ -69,7 +69,7 @@ namespace Jellyfin.Data.Entities
|
||||
partial void GetId(ref int result);
|
||||
|
||||
/// <summary>
|
||||
/// Identity, Indexed, Required
|
||||
/// Identity, Indexed, Required.
|
||||
/// </summary>
|
||||
[Key]
|
||||
[Required]
|
||||
@@ -94,7 +94,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for Name
|
||||
/// Backing field for Name.
|
||||
/// </summary>
|
||||
internal string _Name;
|
||||
/// <summary>
|
||||
@@ -132,7 +132,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Required, ConcurrenyToken
|
||||
/// Required, ConcurrenyToken.
|
||||
/// </summary>
|
||||
[ConcurrencyCheck]
|
||||
[Required]
|
||||
|
||||
@@ -25,7 +25,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Public constructor with required data
|
||||
/// Public constructor with required data.
|
||||
/// </summary>
|
||||
/// <param name="name"></param>
|
||||
public Library(string name)
|
||||
@@ -51,7 +51,7 @@ namespace Jellyfin.Data.Entities
|
||||
*************************************************************************/
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for Id
|
||||
/// Backing field for Id.
|
||||
/// </summary>
|
||||
internal int _Id;
|
||||
/// <summary>
|
||||
@@ -64,7 +64,7 @@ namespace Jellyfin.Data.Entities
|
||||
partial void GetId(ref int result);
|
||||
|
||||
/// <summary>
|
||||
/// Identity, Indexed, Required
|
||||
/// Identity, Indexed, Required.
|
||||
/// </summary>
|
||||
[Key]
|
||||
[Required]
|
||||
@@ -89,7 +89,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for Name
|
||||
/// Backing field for Name.
|
||||
/// </summary>
|
||||
protected string _Name;
|
||||
/// <summary>
|
||||
@@ -127,7 +127,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Required, ConcurrenyToken
|
||||
/// Required, ConcurrenyToken.
|
||||
/// </summary>
|
||||
[ConcurrencyCheck]
|
||||
[Required]
|
||||
|
||||
@@ -17,7 +17,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Public constructor with required data
|
||||
/// Public constructor with required data.
|
||||
/// </summary>
|
||||
/// <param name="urlid">This is whats gets displayed in the Urls and API requests. This could also be a string.</param>
|
||||
protected LibraryItem(Guid urlid, DateTime dateadded)
|
||||
@@ -33,7 +33,7 @@ namespace Jellyfin.Data.Entities
|
||||
*************************************************************************/
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for Id
|
||||
/// Backing field for Id.
|
||||
/// </summary>
|
||||
internal int _Id;
|
||||
/// <summary>
|
||||
@@ -46,7 +46,7 @@ namespace Jellyfin.Data.Entities
|
||||
partial void GetId(ref int result);
|
||||
|
||||
/// <summary>
|
||||
/// Identity, Indexed, Required
|
||||
/// Identity, Indexed, Required.
|
||||
/// </summary>
|
||||
[Key]
|
||||
[Required]
|
||||
@@ -71,7 +71,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for UrlId
|
||||
/// Backing field for UrlId.
|
||||
/// </summary>
|
||||
internal Guid _UrlId;
|
||||
/// <summary>
|
||||
@@ -108,7 +108,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for DateAdded
|
||||
/// Backing field for DateAdded.
|
||||
/// </summary>
|
||||
protected DateTime _DateAdded;
|
||||
/// <summary>
|
||||
@@ -121,7 +121,7 @@ namespace Jellyfin.Data.Entities
|
||||
partial void GetDateAdded(ref DateTime result);
|
||||
|
||||
/// <summary>
|
||||
/// Required
|
||||
/// Required.
|
||||
/// </summary>
|
||||
[Required]
|
||||
public DateTime DateAdded
|
||||
@@ -144,7 +144,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Required, ConcurrenyToken
|
||||
/// Required, ConcurrenyToken.
|
||||
/// </summary>
|
||||
[ConcurrencyCheck]
|
||||
[Required]
|
||||
@@ -160,7 +160,7 @@ namespace Jellyfin.Data.Entities
|
||||
*************************************************************************/
|
||||
|
||||
/// <summary>
|
||||
/// Required
|
||||
/// Required.
|
||||
/// </summary>
|
||||
[ForeignKey("LibraryRoot_Id")]
|
||||
public virtual LibraryRoot LibraryRoot { get; set; }
|
||||
|
||||
@@ -25,7 +25,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Public constructor with required data
|
||||
/// Public constructor with required data.
|
||||
/// </summary>
|
||||
/// <param name="path">Absolute Path</param>
|
||||
public LibraryRoot(string path)
|
||||
@@ -51,7 +51,7 @@ namespace Jellyfin.Data.Entities
|
||||
*************************************************************************/
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for Id
|
||||
/// Backing field for Id.
|
||||
/// </summary>
|
||||
internal int _Id;
|
||||
/// <summary>
|
||||
@@ -64,7 +64,7 @@ namespace Jellyfin.Data.Entities
|
||||
partial void GetId(ref int result);
|
||||
|
||||
/// <summary>
|
||||
/// Identity, Indexed, Required
|
||||
/// Identity, Indexed, Required.
|
||||
/// </summary>
|
||||
[Key]
|
||||
[Required]
|
||||
@@ -89,7 +89,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for Path
|
||||
/// Backing field for Path.
|
||||
/// </summary>
|
||||
protected string _Path;
|
||||
/// <summary>
|
||||
@@ -103,7 +103,7 @@ namespace Jellyfin.Data.Entities
|
||||
|
||||
/// <summary>
|
||||
/// Required, Max length = 65535
|
||||
/// Absolute Path
|
||||
/// Absolute Path.
|
||||
/// </summary>
|
||||
[Required]
|
||||
[MaxLength(65535)]
|
||||
@@ -128,7 +128,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for NetworkPath
|
||||
/// Backing field for NetworkPath.
|
||||
/// </summary>
|
||||
protected string _NetworkPath;
|
||||
/// <summary>
|
||||
@@ -166,7 +166,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Required, ConcurrenyToken
|
||||
/// Required, ConcurrenyToken.
|
||||
/// </summary>
|
||||
[ConcurrencyCheck]
|
||||
[Required]
|
||||
@@ -182,7 +182,7 @@ namespace Jellyfin.Data.Entities
|
||||
*************************************************************************/
|
||||
|
||||
/// <summary>
|
||||
/// Required
|
||||
/// Required.
|
||||
/// </summary>
|
||||
[ForeignKey("Library_Id")]
|
||||
public virtual Library Library { get; set; }
|
||||
|
||||
@@ -28,7 +28,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Public constructor with required data
|
||||
/// Public constructor with required data.
|
||||
/// </summary>
|
||||
/// <param name="path">Relative to the LibraryRoot</param>
|
||||
/// <param name="kind"></param>
|
||||
@@ -64,7 +64,7 @@ namespace Jellyfin.Data.Entities
|
||||
*************************************************************************/
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for Id
|
||||
/// Backing field for Id.
|
||||
/// </summary>
|
||||
internal int _Id;
|
||||
/// <summary>
|
||||
@@ -77,7 +77,7 @@ namespace Jellyfin.Data.Entities
|
||||
partial void GetId(ref int result);
|
||||
|
||||
/// <summary>
|
||||
/// Identity, Indexed, Required
|
||||
/// Identity, Indexed, Required.
|
||||
/// </summary>
|
||||
[Key]
|
||||
[Required]
|
||||
@@ -102,7 +102,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for Path
|
||||
/// Backing field for Path.
|
||||
/// </summary>
|
||||
protected string _Path;
|
||||
/// <summary>
|
||||
@@ -116,7 +116,7 @@ namespace Jellyfin.Data.Entities
|
||||
|
||||
/// <summary>
|
||||
/// Required, Max length = 65535
|
||||
/// Relative to the LibraryRoot
|
||||
/// Relative to the LibraryRoot.
|
||||
/// </summary>
|
||||
[Required]
|
||||
[MaxLength(65535)]
|
||||
@@ -141,7 +141,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for Kind
|
||||
/// Backing field for Kind.
|
||||
/// </summary>
|
||||
protected Enums.MediaFileKind _Kind;
|
||||
/// <summary>
|
||||
@@ -154,7 +154,7 @@ namespace Jellyfin.Data.Entities
|
||||
partial void GetKind(ref Enums.MediaFileKind result);
|
||||
|
||||
/// <summary>
|
||||
/// Required
|
||||
/// Required.
|
||||
/// </summary>
|
||||
[Required]
|
||||
public Enums.MediaFileKind Kind
|
||||
@@ -177,7 +177,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Required, ConcurrenyToken
|
||||
/// Required, ConcurrenyToken.
|
||||
/// </summary>
|
||||
[ConcurrencyCheck]
|
||||
[Required]
|
||||
|
||||
@@ -25,7 +25,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Public constructor with required data
|
||||
/// Public constructor with required data.
|
||||
/// </summary>
|
||||
/// <param name="streamnumber"></param>
|
||||
/// <param name="_mediafile0"></param>
|
||||
@@ -55,7 +55,7 @@ namespace Jellyfin.Data.Entities
|
||||
*************************************************************************/
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for Id
|
||||
/// Backing field for Id.
|
||||
/// </summary>
|
||||
internal int _Id;
|
||||
/// <summary>
|
||||
@@ -68,7 +68,7 @@ namespace Jellyfin.Data.Entities
|
||||
partial void GetId(ref int result);
|
||||
|
||||
/// <summary>
|
||||
/// Identity, Indexed, Required
|
||||
/// Identity, Indexed, Required.
|
||||
/// </summary>
|
||||
[Key]
|
||||
[Required]
|
||||
@@ -93,7 +93,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for StreamNumber
|
||||
/// Backing field for StreamNumber.
|
||||
/// </summary>
|
||||
protected int _StreamNumber;
|
||||
/// <summary>
|
||||
@@ -106,7 +106,7 @@ namespace Jellyfin.Data.Entities
|
||||
partial void GetStreamNumber(ref int result);
|
||||
|
||||
/// <summary>
|
||||
/// Required
|
||||
/// Required.
|
||||
/// </summary>
|
||||
[Required]
|
||||
public int StreamNumber
|
||||
@@ -129,7 +129,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Required, ConcurrenyToken
|
||||
/// Required, ConcurrenyToken.
|
||||
/// </summary>
|
||||
[ConcurrencyCheck]
|
||||
[Required]
|
||||
|
||||
@@ -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]
|
||||
|
||||
@@ -25,7 +25,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Public constructor with required data
|
||||
/// Public constructor with required data.
|
||||
/// </summary>
|
||||
/// <param name="name"></param>
|
||||
public MetadataProvider(string name)
|
||||
@@ -51,7 +51,7 @@ namespace Jellyfin.Data.Entities
|
||||
*************************************************************************/
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for Id
|
||||
/// Backing field for Id.
|
||||
/// </summary>
|
||||
internal int _Id;
|
||||
/// <summary>
|
||||
@@ -64,7 +64,7 @@ namespace Jellyfin.Data.Entities
|
||||
partial void GetId(ref int result);
|
||||
|
||||
/// <summary>
|
||||
/// Identity, Indexed, Required
|
||||
/// Identity, Indexed, Required.
|
||||
/// </summary>
|
||||
[Key]
|
||||
[Required]
|
||||
@@ -89,7 +89,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for Name
|
||||
/// Backing field for Name.
|
||||
/// </summary>
|
||||
protected string _Name;
|
||||
/// <summary>
|
||||
@@ -127,7 +127,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Required, ConcurrenyToken
|
||||
/// Required, ConcurrenyToken.
|
||||
/// </summary>
|
||||
[ConcurrencyCheck]
|
||||
[Required]
|
||||
|
||||
@@ -28,7 +28,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Public constructor with required data
|
||||
/// Public constructor with required data.
|
||||
/// </summary>
|
||||
/// <param name="providerid"></param>
|
||||
/// <param name="_metadata0"></param>
|
||||
@@ -77,7 +77,7 @@ namespace Jellyfin.Data.Entities
|
||||
*************************************************************************/
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for Id
|
||||
/// Backing field for Id.
|
||||
/// </summary>
|
||||
internal int _Id;
|
||||
/// <summary>
|
||||
@@ -90,7 +90,7 @@ namespace Jellyfin.Data.Entities
|
||||
partial void GetId(ref int result);
|
||||
|
||||
/// <summary>
|
||||
/// Identity, Indexed, Required
|
||||
/// Identity, Indexed, Required.
|
||||
/// </summary>
|
||||
[Key]
|
||||
[Required]
|
||||
@@ -115,7 +115,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for ProviderId
|
||||
/// Backing field for ProviderId.
|
||||
/// </summary>
|
||||
protected string _ProviderId;
|
||||
/// <summary>
|
||||
@@ -153,7 +153,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Required, ConcurrenyToken
|
||||
/// Required, ConcurrenyToken.
|
||||
/// </summary>
|
||||
[ConcurrencyCheck]
|
||||
[Required]
|
||||
@@ -169,7 +169,7 @@ namespace Jellyfin.Data.Entities
|
||||
*************************************************************************/
|
||||
|
||||
/// <summary>
|
||||
/// Required
|
||||
/// Required.
|
||||
/// </summary>
|
||||
[ForeignKey("MetadataProvider_Id")]
|
||||
public virtual MetadataProvider MetadataProvider { get; set; }
|
||||
|
||||
@@ -28,7 +28,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Public constructor with required data
|
||||
/// Public constructor with required data.
|
||||
/// </summary>
|
||||
/// <param name="urlid">This is whats gets displayed in the Urls and API requests. This could also be a string.</param>
|
||||
public Movie(Guid urlid, DateTime dateadded)
|
||||
|
||||
@@ -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>
|
||||
@@ -102,7 +102,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for Plot
|
||||
/// Backing field for Plot.
|
||||
/// </summary>
|
||||
protected string _Plot;
|
||||
/// <summary>
|
||||
@@ -139,7 +139,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for Tagline
|
||||
/// Backing field for Tagline.
|
||||
/// </summary>
|
||||
protected string _Tagline;
|
||||
/// <summary>
|
||||
@@ -176,7 +176,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for Country
|
||||
/// Backing field for Country.
|
||||
/// </summary>
|
||||
protected string _Country;
|
||||
/// <summary>
|
||||
|
||||
@@ -28,7 +28,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Public constructor with required data
|
||||
/// Public constructor with required data.
|
||||
/// </summary>
|
||||
/// <param name="urlid">This is whats gets displayed in the Urls and API requests. This could also be a string.</param>
|
||||
public MusicAlbum(Guid urlid, DateTime dateadded)
|
||||
|
||||
@@ -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 Barcode
|
||||
/// Backing field for Barcode.
|
||||
/// </summary>
|
||||
protected string _Barcode;
|
||||
/// <summary>
|
||||
@@ -102,7 +102,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for LabelNumber
|
||||
/// Backing field for LabelNumber.
|
||||
/// </summary>
|
||||
protected string _LabelNumber;
|
||||
/// <summary>
|
||||
@@ -139,7 +139,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for Country
|
||||
/// Backing field for Country.
|
||||
/// </summary>
|
||||
protected string _Country;
|
||||
/// <summary>
|
||||
|
||||
@@ -28,7 +28,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Public constructor with required data
|
||||
/// Public constructor with required data.
|
||||
/// </summary>
|
||||
/// <param name="urlid"></param>
|
||||
/// <param name="name"></param>
|
||||
@@ -59,7 +59,7 @@ namespace Jellyfin.Data.Entities
|
||||
*************************************************************************/
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for Id
|
||||
/// Backing field for Id.
|
||||
/// </summary>
|
||||
internal int _Id;
|
||||
/// <summary>
|
||||
@@ -72,7 +72,7 @@ namespace Jellyfin.Data.Entities
|
||||
partial void GetId(ref int result);
|
||||
|
||||
/// <summary>
|
||||
/// Identity, Indexed, Required
|
||||
/// Identity, Indexed, Required.
|
||||
/// </summary>
|
||||
[Key]
|
||||
[Required]
|
||||
@@ -97,7 +97,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for UrlId
|
||||
/// Backing field for UrlId.
|
||||
/// </summary>
|
||||
protected Guid _UrlId;
|
||||
/// <summary>
|
||||
@@ -110,7 +110,7 @@ namespace Jellyfin.Data.Entities
|
||||
partial void GetUrlId(ref Guid result);
|
||||
|
||||
/// <summary>
|
||||
/// Required
|
||||
/// Required.
|
||||
/// </summary>
|
||||
[Required]
|
||||
public Guid UrlId
|
||||
@@ -133,7 +133,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for Name
|
||||
/// Backing field for Name.
|
||||
/// </summary>
|
||||
protected string _Name;
|
||||
/// <summary>
|
||||
@@ -171,7 +171,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for SourceId
|
||||
/// Backing field for SourceId.
|
||||
/// </summary>
|
||||
protected string _SourceId;
|
||||
/// <summary>
|
||||
@@ -208,7 +208,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for DateAdded
|
||||
/// Backing field for DateAdded.
|
||||
/// </summary>
|
||||
protected DateTime _DateAdded;
|
||||
/// <summary>
|
||||
@@ -221,7 +221,7 @@ namespace Jellyfin.Data.Entities
|
||||
partial void GetDateAdded(ref DateTime result);
|
||||
|
||||
/// <summary>
|
||||
/// Required
|
||||
/// Required.
|
||||
/// </summary>
|
||||
[Required]
|
||||
public DateTime DateAdded
|
||||
@@ -244,7 +244,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for DateModified
|
||||
/// Backing field for DateModified.
|
||||
/// </summary>
|
||||
protected DateTime _DateModified;
|
||||
/// <summary>
|
||||
@@ -257,7 +257,7 @@ namespace Jellyfin.Data.Entities
|
||||
partial void GetDateModified(ref DateTime result);
|
||||
|
||||
/// <summary>
|
||||
/// Required
|
||||
/// Required.
|
||||
/// </summary>
|
||||
[Required]
|
||||
public DateTime DateModified
|
||||
@@ -280,7 +280,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Required, ConcurrenyToken
|
||||
/// Required, ConcurrenyToken.
|
||||
/// </summary>
|
||||
[ConcurrencyCheck]
|
||||
[Required]
|
||||
|
||||
@@ -31,7 +31,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Public constructor with required data
|
||||
/// Public constructor with required data.
|
||||
/// </summary>
|
||||
/// <param name="type"></param>
|
||||
/// <param name="_metadata0"></param>
|
||||
@@ -65,7 +65,7 @@ namespace Jellyfin.Data.Entities
|
||||
*************************************************************************/
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for Id
|
||||
/// Backing field for Id.
|
||||
/// </summary>
|
||||
internal int _Id;
|
||||
/// <summary>
|
||||
@@ -78,7 +78,7 @@ namespace Jellyfin.Data.Entities
|
||||
partial void GetId(ref int result);
|
||||
|
||||
/// <summary>
|
||||
/// Identity, Indexed, Required
|
||||
/// Identity, Indexed, Required.
|
||||
/// </summary>
|
||||
[Key]
|
||||
[Required]
|
||||
@@ -103,7 +103,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for Role
|
||||
/// Backing field for Role.
|
||||
/// </summary>
|
||||
protected string _Role;
|
||||
/// <summary>
|
||||
@@ -140,7 +140,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for Type
|
||||
/// Backing field for Type.
|
||||
/// </summary>
|
||||
protected Enums.PersonRoleType _Type;
|
||||
/// <summary>
|
||||
@@ -153,7 +153,7 @@ namespace Jellyfin.Data.Entities
|
||||
partial void GetType(ref Enums.PersonRoleType result);
|
||||
|
||||
/// <summary>
|
||||
/// Required
|
||||
/// Required.
|
||||
/// </summary>
|
||||
[Required]
|
||||
public Enums.PersonRoleType Type
|
||||
@@ -176,7 +176,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Required, ConcurrenyToken
|
||||
/// Required, ConcurrenyToken.
|
||||
/// </summary>
|
||||
[ConcurrencyCheck]
|
||||
[Required]
|
||||
@@ -192,7 +192,7 @@ namespace Jellyfin.Data.Entities
|
||||
*************************************************************************/
|
||||
|
||||
/// <summary>
|
||||
/// Required
|
||||
/// Required.
|
||||
/// </summary>
|
||||
[ForeignKey("Person_Id")]
|
||||
|
||||
|
||||
@@ -28,7 +28,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Public constructor with required data
|
||||
/// Public constructor with required data.
|
||||
/// </summary>
|
||||
/// <param name="urlid">This is whats gets displayed in the Urls and API requests. This could also be a string.</param>
|
||||
public Photo(Guid urlid, DateTime dateadded)
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -25,7 +25,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Public constructor with required data
|
||||
/// Public constructor with required data.
|
||||
/// </summary>
|
||||
/// <param name="providername"></param>
|
||||
/// <param name="providersecrets"></param>
|
||||
@@ -65,7 +65,7 @@ namespace Jellyfin.Data.Entities
|
||||
*************************************************************************/
|
||||
|
||||
/// <summary>
|
||||
/// Identity, Indexed, Required
|
||||
/// Identity, Indexed, Required.
|
||||
/// </summary>
|
||||
[Key]
|
||||
[Required]
|
||||
@@ -97,7 +97,7 @@ namespace Jellyfin.Data.Entities
|
||||
public string ProviderData { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Required, ConcurrenyToken
|
||||
/// Required, ConcurrenyToken.
|
||||
/// </summary>
|
||||
[ConcurrencyCheck]
|
||||
[Required]
|
||||
|
||||
@@ -25,7 +25,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Public constructor with required data
|
||||
/// Public constructor with required data.
|
||||
/// </summary>
|
||||
/// <param name="value"></param>
|
||||
/// <param name="_metadata0"></param>
|
||||
@@ -55,7 +55,7 @@ namespace Jellyfin.Data.Entities
|
||||
*************************************************************************/
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for Id
|
||||
/// Backing field for Id.
|
||||
/// </summary>
|
||||
internal int _Id;
|
||||
/// <summary>
|
||||
@@ -68,7 +68,7 @@ namespace Jellyfin.Data.Entities
|
||||
partial void GetId(ref int result);
|
||||
|
||||
/// <summary>
|
||||
/// Identity, Indexed, Required
|
||||
/// Identity, Indexed, Required.
|
||||
/// </summary>
|
||||
[Key]
|
||||
[Required]
|
||||
@@ -93,7 +93,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for Value
|
||||
/// Backing field for Value.
|
||||
/// </summary>
|
||||
protected double _Value;
|
||||
/// <summary>
|
||||
@@ -106,7 +106,7 @@ namespace Jellyfin.Data.Entities
|
||||
partial void GetValue(ref double result);
|
||||
|
||||
/// <summary>
|
||||
/// Required
|
||||
/// Required.
|
||||
/// </summary>
|
||||
[Required]
|
||||
public double Value
|
||||
@@ -129,7 +129,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for Votes
|
||||
/// Backing field for Votes.
|
||||
/// </summary>
|
||||
protected int? _Votes;
|
||||
/// <summary>
|
||||
@@ -161,7 +161,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Required, ConcurrenyToken
|
||||
/// Required, ConcurrenyToken.
|
||||
/// </summary>
|
||||
[ConcurrencyCheck]
|
||||
[Required]
|
||||
|
||||
@@ -5,7 +5,7 @@ using System.ComponentModel.DataAnnotations.Schema;
|
||||
namespace Jellyfin.Data.Entities
|
||||
{
|
||||
/// <summary>
|
||||
/// This is the entity to store review ratings, not age ratings
|
||||
/// This is the entity to store review ratings, not age ratings.
|
||||
/// </summary>
|
||||
public partial class RatingSource
|
||||
{
|
||||
@@ -28,7 +28,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Public constructor with required data
|
||||
/// Public constructor with required data.
|
||||
/// </summary>
|
||||
/// <param name="maximumvalue"></param>
|
||||
/// <param name="minimumvalue"></param>
|
||||
@@ -62,7 +62,7 @@ namespace Jellyfin.Data.Entities
|
||||
*************************************************************************/
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for Id
|
||||
/// Backing field for Id.
|
||||
/// </summary>
|
||||
internal int _Id;
|
||||
/// <summary>
|
||||
@@ -75,7 +75,7 @@ namespace Jellyfin.Data.Entities
|
||||
partial void GetId(ref int result);
|
||||
|
||||
/// <summary>
|
||||
/// Identity, Indexed, Required
|
||||
/// Identity, Indexed, Required.
|
||||
/// </summary>
|
||||
[Key]
|
||||
[Required]
|
||||
@@ -100,7 +100,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for Name
|
||||
/// Backing field for Name.
|
||||
/// </summary>
|
||||
protected string _Name;
|
||||
/// <summary>
|
||||
@@ -137,7 +137,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for MaximumValue
|
||||
/// Backing field for MaximumValue.
|
||||
/// </summary>
|
||||
protected double _MaximumValue;
|
||||
/// <summary>
|
||||
@@ -150,7 +150,7 @@ namespace Jellyfin.Data.Entities
|
||||
partial void GetMaximumValue(ref double result);
|
||||
|
||||
/// <summary>
|
||||
/// Required
|
||||
/// Required.
|
||||
/// </summary>
|
||||
[Required]
|
||||
public double MaximumValue
|
||||
@@ -173,7 +173,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for MinimumValue
|
||||
/// Backing field for MinimumValue.
|
||||
/// </summary>
|
||||
protected double _MinimumValue;
|
||||
/// <summary>
|
||||
@@ -186,7 +186,7 @@ namespace Jellyfin.Data.Entities
|
||||
partial void GetMinimumValue(ref double result);
|
||||
|
||||
/// <summary>
|
||||
/// Required
|
||||
/// Required.
|
||||
/// </summary>
|
||||
[Required]
|
||||
public double MinimumValue
|
||||
@@ -209,7 +209,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Required, ConcurrenyToken
|
||||
/// Required, ConcurrenyToken.
|
||||
/// </summary>
|
||||
[ConcurrencyCheck]
|
||||
[Required]
|
||||
|
||||
@@ -29,7 +29,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Public constructor with required data
|
||||
/// Public constructor with required data.
|
||||
/// </summary>
|
||||
/// <param name="name"></param>
|
||||
/// <param name="_movie0"></param>
|
||||
@@ -87,7 +87,7 @@ namespace Jellyfin.Data.Entities
|
||||
*************************************************************************/
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for Id
|
||||
/// Backing field for Id.
|
||||
/// </summary>
|
||||
internal int _Id;
|
||||
/// <summary>
|
||||
@@ -100,7 +100,7 @@ namespace Jellyfin.Data.Entities
|
||||
partial void GetId(ref int result);
|
||||
|
||||
/// <summary>
|
||||
/// Identity, Indexed, Required
|
||||
/// Identity, Indexed, Required.
|
||||
/// </summary>
|
||||
[Key]
|
||||
[Required]
|
||||
@@ -125,7 +125,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for Name
|
||||
/// Backing field for Name.
|
||||
/// </summary>
|
||||
protected string _Name;
|
||||
/// <summary>
|
||||
@@ -163,7 +163,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Required, ConcurrenyToken
|
||||
/// Required, ConcurrenyToken.
|
||||
/// </summary>
|
||||
[ConcurrencyCheck]
|
||||
[Required]
|
||||
|
||||
@@ -31,7 +31,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Public constructor with required data
|
||||
/// Public constructor with required data.
|
||||
/// </summary>
|
||||
/// <param name="urlid">This is whats gets displayed in the Urls and API requests. This could also be a string.</param>
|
||||
/// <param name="_series0"></param>
|
||||
@@ -66,7 +66,7 @@ namespace Jellyfin.Data.Entities
|
||||
*************************************************************************/
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for SeasonNumber
|
||||
/// Backing field for SeasonNumber.
|
||||
/// </summary>
|
||||
protected int? _SeasonNumber;
|
||||
/// <summary>
|
||||
|
||||
@@ -25,7 +25,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>
|
||||
@@ -61,7 +61,7 @@ namespace Jellyfin.Data.Entities
|
||||
*************************************************************************/
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for Outline
|
||||
/// Backing field for Outline.
|
||||
/// </summary>
|
||||
protected string _Outline;
|
||||
/// <summary>
|
||||
|
||||
@@ -20,7 +20,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Public constructor with required data
|
||||
/// Public constructor with required data.
|
||||
/// </summary>
|
||||
/// <param name="urlid">This is whats gets displayed in the Urls and API requests. This could also be a string.</param>
|
||||
public Series(Guid urlid, DateTime dateadded)
|
||||
@@ -47,7 +47,7 @@ namespace Jellyfin.Data.Entities
|
||||
*************************************************************************/
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for AirsDayOfWeek
|
||||
/// Backing field for AirsDayOfWeek.
|
||||
/// </summary>
|
||||
protected DayOfWeek? _AirsDayOfWeek;
|
||||
/// <summary>
|
||||
@@ -79,7 +79,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for AirsTime
|
||||
/// Backing field for AirsTime.
|
||||
/// </summary>
|
||||
protected DateTimeOffset? _AirsTime;
|
||||
/// <summary>
|
||||
@@ -92,7 +92,7 @@ namespace Jellyfin.Data.Entities
|
||||
partial void GetAirsTime(ref DateTimeOffset? result);
|
||||
|
||||
/// <summary>
|
||||
/// The time the show airs, ignore the date portion
|
||||
/// The time the show airs, ignore the date portion.
|
||||
/// </summary>
|
||||
public DateTimeOffset? AirsTime
|
||||
{
|
||||
@@ -114,7 +114,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for FirstAired
|
||||
/// Backing field for FirstAired.
|
||||
/// </summary>
|
||||
protected DateTimeOffset? _FirstAired;
|
||||
/// <summary>
|
||||
|
||||
@@ -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>
|
||||
@@ -102,7 +102,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for Plot
|
||||
/// Backing field for Plot.
|
||||
/// </summary>
|
||||
protected string _Plot;
|
||||
/// <summary>
|
||||
@@ -139,7 +139,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for Tagline
|
||||
/// Backing field for Tagline.
|
||||
/// </summary>
|
||||
protected string _Tagline;
|
||||
/// <summary>
|
||||
@@ -176,7 +176,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for Country
|
||||
/// Backing field for Country.
|
||||
/// </summary>
|
||||
protected string _Country;
|
||||
/// <summary>
|
||||
|
||||
@@ -31,7 +31,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Public constructor with required data
|
||||
/// Public constructor with required data.
|
||||
/// </summary>
|
||||
/// <param name="urlid">This is whats gets displayed in the Urls and API requests. This could also be a string.</param>
|
||||
/// <param name="_musicalbum0"></param>
|
||||
@@ -66,7 +66,7 @@ namespace Jellyfin.Data.Entities
|
||||
*************************************************************************/
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for TrackNumber
|
||||
/// Backing field for TrackNumber.
|
||||
/// </summary>
|
||||
protected int? _TrackNumber;
|
||||
/// <summary>
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -26,7 +26,7 @@ namespace Jellyfin.Data.Enums
|
||||
EnabledDevices = 3,
|
||||
|
||||
/// <summary>
|
||||
/// A list of enabled channels
|
||||
/// A list of enabled channels.
|
||||
/// </summary>
|
||||
EnabledChannels = 4,
|
||||
|
||||
|
||||
Reference in New Issue
Block a user