15 lines
356 B
C#
15 lines
356 B
C#
using System.Collections.Generic;
|
|
|
|
namespace TinfoilVibeServer.Models;
|
|
|
|
/// <summary>
|
|
/// The JSON object that will be returned for the “index” route.
|
|
/// </summary>
|
|
public sealed record IndexDto(
|
|
List<FileDto> Files,
|
|
List<string> Directories,
|
|
string Success);
|
|
|
|
public sealed record FileDto(
|
|
string Url,
|
|
long Size); |