Kavita/API/DTOs/VolumeDto.cs
Joseph Milazzo 9168e12483 Refactored Volume to have Name and Number (int) so that we can properly sort and still handle possible split volumes.
Refactored ScanLibrary into Library controller and updated it so it adds the new library to all admins.
2021-01-02 12:21:36 -06:00

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; }
}
}