mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-30 19:54:14 -04:00
15 lines
361 B
C#
15 lines
361 B
C#
using System.Collections.Generic;
|
|
|
|
namespace API.Entities
|
|
{
|
|
public class Volume
|
|
{
|
|
public int Id { get; set; }
|
|
public string Number { get; set; }
|
|
public ICollection<MangaFile> Files { get; set; }
|
|
|
|
// Many-to-Many relationships
|
|
public Series Series { get; set; }
|
|
public int SeriesId { get; set; }
|
|
}
|
|
} |