mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-31 04:04:19 -04:00
13 lines
276 B
C#
13 lines
276 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; }
|
|
|
|
}
|
|
} |