mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-01-23 04:07:09 -05:00
11 lines
232 B
C#
11 lines
232 B
C#
using System.Collections.Generic;
|
|
using API.Entities.Enums;
|
|
|
|
namespace API.DTOs.Misc;
|
|
|
|
public sealed record ParseBulkRequestDto
|
|
{
|
|
public ICollection<string> Names { get; set; }
|
|
public LibraryType LibraryType { get; set; }
|
|
}
|