Kavita/API/DTOs/StandaloneChapterDto.cs
Joe Milazzo ba20ad4ecc
New Scanner + People Pages (#3286)
Co-authored-by: Robbie Davis <robbie@therobbiedavis.com>
2024-10-23 15:11:18 -07:00

14 lines
333 B
C#

using API.Entities.Enums;
namespace API.DTOs;
/// <summary>
/// Used on Person Profile page
/// </summary>
public class StandaloneChapterDto : ChapterDto
{
public int SeriesId { get; set; }
public int LibraryId { get; set; }
public LibraryType LibraryType { get; set; }
public string VolumeTitle { get; set; }
}