mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-31 20:24:27 -04:00
24 lines
658 B
C#
24 lines
658 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using API.Entities.Interfaces;
|
|
|
|
namespace API.Entities
|
|
{
|
|
public class Volume : IEntityDate
|
|
{
|
|
public int Id { get; set; }
|
|
public string Name { get; set; }
|
|
public int Number { get; set; }
|
|
public ICollection<MangaFile> Files { get; set; }
|
|
public DateTime Created { get; set; }
|
|
public DateTime LastModified { get; set; }
|
|
public byte[] CoverImage { get; set; }
|
|
public int Pages { get; set; }
|
|
|
|
|
|
|
|
// Many-to-One relationships
|
|
public Series Series { get; set; }
|
|
public int SeriesId { get; set; }
|
|
}
|
|
} |