aboutsummaryrefslogtreecommitdiffstats
path: root/code/api/Models/FileSystemEntry.cs
blob: ee57f96142f945179a37c043093e08cedb7e7b11 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
namespace Quality.Storage.Api.Models;

public class FileSystemEntry
{
    public Guid Id { get; set; }
    public string Name { get; set; }
    public string MimeType { get; set; }
    public long SizeInBytes { get; set; }
    public List<FileSystemEntry> Files { get; set; }
}