mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-24 00:52:23 -04:00
Refactored ScanLibrary into Library controller and updated it so it adds the new library to all admins.
13 lines
318 B
C#
13 lines
318 B
C#
using System.Collections.Generic;
|
|
|
|
namespace API.DTOs
|
|
{
|
|
public class VolumeDto
|
|
{
|
|
public int Id { get; set; }
|
|
public int Number { get; set; }
|
|
public string Name { get; set; }
|
|
public string CoverImage { get; set; }
|
|
public ICollection<string> Files { get; set; }
|
|
}
|
|
} |