using System.Collections.Generic; namespace VersOne.Epub.Schema { public class EpubMetadata { public List Titles { get; set; } public List Creators { get; set; } public List Subjects { get; set; } public string Description { get; set; } public List Publishers { get; set; } public List Contributors { get; set; } public List Dates { get; set; } public List Types { get; set; } public List Formats { get; set; } public List Identifiers { get; set; } public List Sources { get; set; } public List Languages { get; set; } public List Relations { get; set; } public List Coverages { get; set; } public List Rights { get; set; } public List MetaItems { get; set; } } }