aboutsummaryrefslogtreecommitdiffstats
path: root/code/api/Database/Models/Folder.cs
blob: ff9515a438bc1a76c63f9ea20970b0c07c4f10ba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
namespace I2R.Storage.Api.Database.Models;

public class Folder : Base
{
    public Folder() { }

    public Folder(Guid createdBy) : base(createdBy) { }
    public string Name { get; set; }
    public Folder Parent { get; set; }
    public Guid? ParentId { get; set; }
    public List<File> Files { get; set; }
    public List<Permission> Permissions { get; set; }
    public bool IsEncrypted { get; set; }
    public bool IsBinned { get; set; }
}