using System;
using System.Collections.Generic;
using API.Entities.Interfaces;
namespace API.Entities
{
public class Chapter : IEntityDate
{
public int Id { get; set; }
///
/// Range of numbers. Chapter 2-4 -> "2-4". Chapter 2 -> "2".
///
public string Range { get; set; }
///
/// Smallest number of the Range. Can be a partial like Chapter 4.5
///
public string Number { get; set; }
///
/// The files that represent this Chapter
///
public ICollection Files { get; set; }
public DateTime Created { get; set; }
public DateTime LastModified { get; set; }
public byte[] CoverImage { get; set; }
///
/// Total number of pages in all MangaFiles
///
public int Pages { get; set; }
// Relationships
public Volume Volume { get; set; }
public int VolumeId { get; set; }
}
}