using System;
using System.Collections.Generic;
using API.Entities.Interfaces;
namespace API.Entities
{
    public class Series : IEntityDate
    {
        public int Id { get; set; }
        /// 
        /// The UI visible Name of the Series. This may or may not be the same as the OriginalName
        /// 
        public string Name { get; set; }
        /// 
        /// Original Japanese Name
        /// 
        public string OriginalName { get; set; }
        /// 
        /// The name used to sort the Series. By default, will be the same as Name.
        /// 
        public string SortName { get; set; }
        /// 
        /// Summary information related to the Series
        /// 
        public string Summary { get; set; }
        public DateTime Created { get; set; }
        public DateTime LastModified { get; set; }
        public byte[] CoverImage { get; set; }
        public ICollection Volumes { get; set; }
        public Library Library { get; set; }
        public int LibraryId { get; set; }
    }
}