mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-09-29 15:30:50 -04:00
13 lines
311 B
C#
13 lines
311 B
C#
using System.Collections.Generic;
|
|
using API.Entities;
|
|
|
|
namespace API.DTOs
|
|
{
|
|
public class LibraryDto
|
|
{
|
|
public string Name { get; set; }
|
|
public string CoverImage { get; set; }
|
|
public LibraryType Type { get; set; }
|
|
public ICollection<string> Folders { get; set; }
|
|
}
|
|
} |