Kavita/API/Data/Misc/RecentlyAddedSeries.cs
2024-01-28 09:37:38 -08:00

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; }
}