mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-03-10 12:05:51 -04:00
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com> Co-authored-by: Joe Milazzo <josephmajora@gmail.com>
16 lines
370 B
C#
16 lines
370 B
C#
using Kavita.Models.Entities.Enums;
|
|
|
|
namespace Kavita.Models.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; }
|
|
}
|