mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-03 13:44:31 -04:00
14 lines
277 B
C#
14 lines
277 B
C#
|
|
namespace API.Entities
|
|
{
|
|
public class MangaFile
|
|
{
|
|
public int Id { get; set; }
|
|
public string FilePath { get; set; }
|
|
|
|
// Relationship Mapping
|
|
public Volume Volume { get; set; }
|
|
public int VolumeId { get; set; }
|
|
|
|
}
|
|
} |