mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-11-04 03:27:05 -05: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; }
 | 
						|
}
 |