mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-24 00:52:23 -04:00
14 lines
358 B
C#
14 lines
358 B
C#
using System.Collections.Generic;
|
|
using API.Entities.Enums;
|
|
|
|
namespace API.DTOs
|
|
{
|
|
public class LibraryDto
|
|
{
|
|
public int Id { get; init; }
|
|
public string Name { get; init; }
|
|
public string CoverImage { get; init; }
|
|
public LibraryType Type { get; init; }
|
|
public ICollection<string> Folders { get; init; }
|
|
}
|
|
} |