14 lines
No EOL
336 B
C#
14 lines
No EOL
336 B
C#
namespace API.Entities
|
|
{
|
|
public class MangaFile
|
|
{
|
|
public int Id { get; set; }
|
|
public string FilePath { get; set; }
|
|
//public string FileExtension { get; set; }
|
|
|
|
// Relationship Mapping
|
|
public Volume Volume { get; set; }
|
|
public int VolumeId { get; set; }
|
|
|
|
}
|
|
} |