summaryrefslogtreecommitdiffstats
path: root/common/domain/folder.fbs
blob: 09f30f880de9dd1fd0c457126e2ac0b0b2f992fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
namespace Sink.ApplicationDomain.Buffer;

table Folder {
  name:string;
  parent:string;
  icon:string;
  specialpurpose:[string];
  enabled:bool = true;
}

root_type Folder;
file_identifier "AKFB";