mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-22 10:04:44 +01:00
denormalize seasonid
This commit is contained in:
@@ -954,6 +954,16 @@ namespace MediaBrowser.Model.Dto
|
||||
get { return ImageTags != null && ImageTags.ContainsKey(ImageType.Thumb); }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets a value indicating whether this instance has thumb.
|
||||
/// </summary>
|
||||
/// <value><c>true</c> if this instance has thumb; otherwise, <c>false</c>.</value>
|
||||
[IgnoreDataMember]
|
||||
public bool HasBackdrop
|
||||
{
|
||||
get { return (BackdropImageTags != null && BackdropImageTags.Count > 0) || (ParentBackdropImageTags != null && ParentBackdropImageTags.Count > 0); }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets a value indicating whether this instance has primary image.
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user