using System.ComponentModel;
namespace API.Entities.Enums
{
    /// 
    /// Represents the format of the file
    /// 
    public enum MangaFormat
    {
        /// 
        /// Image file
        /// See  for supported extensions
        /// 
        [Description("Image")]
        Image = 0,
        /// 
        /// Archive based file
        /// See  for supported extensions
        /// 
        [Description("Archive")]
        Archive = 1,
        /// 
        /// Unknown. Not used.
        /// 
        [Description("Unknown")]
        Unknown = 2,
        /// 
        /// EPUB File
        /// 
        [Description("EPUB")]
        Epub = 3,
        /// 
        /// PDF File
        /// 
        [Description("PDF")]
        Pdf = 4
    }
}