mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-11-04 03:27:05 -05: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; }
 | 
						|
    }
 | 
						|
} |