using System.Collections.Generic;
namespace TinfoilVibeServer.Models;
///
/// The JSON object that will be returned for the “index” route.
///
public sealed record IndexDto(
List Files,
List Directories,
string Success);
public sealed record FileDto(
string Url,
long Size);