using System.Collections.Generic;
namespace VersOne.Epub.Schema
{
///
/// Encapsulates meta information for the EPUB book.
///
/// See
/// and for more information.
///
///
public class EpubMetadata
{
///
/// Initializes a new instance of the class.
///
/// A list of titles of the EPUB book.
/// A list of creators of the EPUB book.
/// A list of subjects of the EPUB book.
/// A list of descriptions of the EPUB book.
/// A list of publishers of the EPUB book.
/// A list of names of persons, organizations, etc. that played a secondary role in the creation of the content of the EPUB book.
/// A list of dates of the events associated with the EPUB book (e.g. publication date).
/// A list of types of the EPUB book.
/// A list of file formats, physical media, or dimensions of the EPUB book.
/// A list of identifiers associated with the EPUB book, such as a UUID, DOI, or ISBN.
/// A list of sources of the EPUB book.
/// A list of languages of the content of the EPUB book.
/// A list of related resources of the EPUB book.
/// A list of coverages of the EPUB book.
/// A list of rights held in and over the EPUB book.
/// A list of metadata links of the EPUB book.
/// A list of generic metadata items of the EPUB book.
public EpubMetadata(List? titles = null, List? creators = null, List? subjects = null,
List? descriptions = null, List? publishers = null, List? contributors = null,
List? dates = null, List? types = null, List? formats = null, List? identifiers = null,
List? sources = null, List? languages = null, List? relations = null,
List? coverages = null, List? rights = null, List? links = null, List? metaItems = null)
{
Titles = titles ?? new List();
Creators = creators ?? new List();
Subjects = subjects ?? new List();
Descriptions = descriptions ?? new List();
Publishers = publishers ?? new List();
Contributors = contributors ?? new List();
Dates = dates ?? new List();
Types = types ?? new List();
Formats = formats ?? new List();
Identifiers = identifiers ?? new List();
Sources = sources ?? new List();
Languages = languages ?? new List();
Relations = relations ?? new List();
Coverages = coverages ?? new List();
Rights = rights ?? new List();
Links = links ?? new List();
MetaItems = metaItems ?? new List();
}
///
/// Gets a list of titles. Each element in this list represents an instance of a name given to the EPUB book.
///
/// See ,
/// ,
/// and for more information.
///
///
public List Titles { get; }
///
///
/// Gets a list of creators. Each element in this list represents the name of a person, organization, etc. responsible for the creation of the content of the EPUB book.
///
///
/// See ,
/// ,
/// and for more information.
///
///
public List Creators { get; }
///
/// Gets a list of subjects. Each element in this list identifies a subject of the EPUB book.
///
/// See ,
/// ,
/// and for more information.
///
///
public List Subjects { get; }
///
/// Gets a list of descriptions of the EPUB book.
///
/// See ,
/// ,
/// and for more information.
///
///
public List Descriptions { get; }
///
/// Gets a list of publishers of the EPUB book.
///
/// See ,
/// ,
/// and for more information.
///
///
public List Publishers { get; }
///
/// Gets a list of names of persons, organizations, etc. that played a secondary role in the creation of the content of the EPUB book.
///
/// See ,
/// ,
/// and for more information.
///
///
public List Contributors { get; }
///
/// Gets a list of dates of the events associated with the EPUB book (e.g. publication date).
///
/// See ,
/// ,
/// and for more information.
///
///
public List Dates { get; }
///
///
/// Gets a list of types of the EPUB book. Types are used to indicate that the EPUB book is of a specialized type
/// (e.g., annotations or a dictionary packaged in EPUB format).
///
///
/// See ,
/// ,
/// and for more information.
///
///
public List Types { get; }
///
/// Gets a list of file formats, physical media, or dimensions of the EPUB book.
///
/// See ,
/// ,
/// and for more information.
///
///
public List Formats { get; }
///
/// Gets a list of identifiers associated with the EPUB book, such as a UUID, DOI, or ISBN.
///
/// See ,
/// ,
/// and for more information.
///
///
public List Identifiers { get; }
///
/// Gets a list of sources. A source is a related resource from which the EPUB book is derived.
///
/// See ,
/// ,
/// and for more information.
///
///
public List Sources { get; }
///
/// Gets a list of languages of the content of the EPUB book.
///
/// See ,
/// ,
/// and for more information.
///
///
public List Languages { get; }
///
/// Gets a list of related resources of the EPUB book.
///
/// See ,
/// ,
/// and for more information.
///
///
public List Relations { get; }
///
///
/// Gets a list of coverages of the EPUB book. A coverage is the spatial or temporal topic of the book,
/// the spatial applicability of the book, or the jurisdiction under which the book is relevant.
///
///
/// See ,
/// ,
/// and for more information.
///
///
public List Coverages { get; }
///
/// Gets a list of rights held in and over the EPUB book.
///
/// See ,
/// ,
/// and for more information.
///
///
public List Rights { get; }
///
/// Gets a list of metadata links. Links are used to associate resources with the EPUB book, such as metadata records.
/// See for more information.
///
public List Links { get; }
///
/// Gets a list of generic metadata items of the EPUB book.
///
/// See ,
/// ,
/// and for more information.
///
///
public List MetaItems { get; }
}
}