namespace API.DTOs.Collection;
#nullable enable
/// 
/// Represents an Interest Stack from MAL
/// 
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; }
    /// 
    /// If an existing collection exists within Kavita
    /// 
    /// This is filled out from Kavita and not Kavita+
    public int ExistingId { get; set; }
}