mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-31 12:14:44 -04:00
24 lines
739 B
C#
24 lines
739 B
C#
using System;
|
|
using API.Entities.Enums;
|
|
|
|
namespace API.Data.Misc;
|
|
#nullable enable
|
|
|
|
public class RecentlyAddedSeries
|
|
{
|
|
public int LibraryId { get; init; }
|
|
public LibraryType LibraryType { get; init; }
|
|
public DateTime Created { get; init; }
|
|
public int SeriesId { get; init; }
|
|
public string? SeriesName { get; init; }
|
|
public MangaFormat Format { get; init; }
|
|
public int ChapterId { get; init; }
|
|
public int VolumeId { get; init; }
|
|
public string? ChapterNumber { get; init; }
|
|
public string? ChapterRange { get; init; }
|
|
public string? ChapterTitle { get; init; }
|
|
public bool IsSpecial { get; init; }
|
|
public float VolumeNumber { get; init; }
|
|
public AgeRating AgeRating { get; init; }
|
|
}
|