using System;
using System.Collections.Generic;
using API.Entities.Interfaces;
namespace API.Entities
{
public class Volume : IEntityDate
{
public int Id { get; set; }
///
/// A String representation of the volume number. Allows for floats
///
public string Name { get; set; }
public int Number { get; set; }
public IList Chapters { get; set; }
public DateTime Created { get; set; }
public DateTime LastModified { get; set; }
///
/// Absolute path to the (managed) image file
///
/// The file is managed internally to Kavita's APPDIR
public string CoverImage { get; set; }
public int Pages { get; set; }
// Relationships
public Series Series { get; set; }
public int SeriesId { get; set; }
}
}