using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
namespace Jellyfin.Data.Entities
{
public partial class Book : LibraryItem
{
partial void Init();
///
/// Default constructor. Protected due to required properties, but present because EF needs it.
///
protected Book()
{
BookMetadata = new HashSet();
Releases = new HashSet();
Init();
}
///
/// Replaces default constructor, since it's protected. Caller assumes responsibility for setting all required values before saving.
///
public static Book CreateBookUnsafe()
{
return new Book();
}
///
/// Public constructor with required data
///
/// This is whats gets displayed in the Urls and API requests. This could also be a string.
public Book(Guid urlid, DateTime dateadded)
{
this.UrlId = urlid;
this.BookMetadata = new HashSet();
this.Releases = new HashSet();
Init();
}
///
/// Static create function (for use in LINQ queries, etc.)
///
/// This is whats gets displayed in the Urls and API requests. This could also be a string.
public static Book Create(Guid urlid, DateTime dateadded)
{
return new Book(urlid, dateadded);
}
/*************************************************************************
* Properties
*************************************************************************/
/*************************************************************************
* Navigation properties
*************************************************************************/
[ForeignKey("BookMetadata_BookMetadata_Id")]
public virtual ICollection BookMetadata { get; protected set; }
[ForeignKey("Release_Releases_Id")]
public virtual ICollection Releases { get; protected set; }
}
}