mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-09-29 15:30:50 -04:00
9 lines
166 B
C#
9 lines
166 B
C#
using System.Collections.Generic;
|
|
|
|
namespace API.DTOs;
|
|
|
|
public sealed record CheckForFilesInFolderRootsDto
|
|
{
|
|
public ICollection<string> Roots { get; init; }
|
|
}
|