mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-11-04 03:27:05 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			630 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			630 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace API.DTOs.Collection;
 | 
						|
 | 
						|
/// <summary>
 | 
						|
/// Represents an Interest Stack from MAL
 | 
						|
/// </summary>
 | 
						|
public class MalStackDto
 | 
						|
{
 | 
						|
    public required string Title { get; set; }
 | 
						|
    public required long StackId { get; set; }
 | 
						|
    public required string Url { get; set; }
 | 
						|
    public required string? Author { get; set; }
 | 
						|
    public required int SeriesCount { get; set; }
 | 
						|
    public required int RestackCount { get; set; }
 | 
						|
    /// <summary>
 | 
						|
    /// If an existing collection exists within Kavita
 | 
						|
    /// </summary>
 | 
						|
    /// <remarks>This is filled out from Kavita and not Kavita+</remarks>
 | 
						|
    public int ExistingId { get; set; }
 | 
						|
}
 |