Kavita/API/DTOs/CheckForFilesInFolderRootsDto.cs
2025-07-24 12:37:17 -07:00

9 lines
166 B
C#

using System.Collections.Generic;
namespace API.DTOs;
public sealed record CheckForFilesInFolderRootsDto
{
public ICollection<string> Roots { get; init; }
}