Misc bunch of changes (#2815)
This commit is contained in:
parent
18792b7b56
commit
63c9bff32e
81 changed files with 4567 additions and 339 deletions
19
API/DTOs/Collection/MalStackDto.cs
Normal file
19
API/DTOs/Collection/MalStackDto.cs
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
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; }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue