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

public class Folder : Base
{
    public string Name { get; set; }
    public List<File> Files { get; set; }
    public List<Permission> Permissions { get; set; }
    public bool IsEncrypted { get; set; }
    public bool IsBinned { get; set; }
}