mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-30 19:54:14 -04:00
16 lines
350 B
C#
16 lines
350 B
C#
using API.Entities.Enums;
|
|
|
|
namespace API.DTOs;
|
|
#nullable enable
|
|
|
|
/// <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; }
|
|
}
|