pastebin/api.fbs

13 lines
164 B
Text
Raw Normal View History

2020-05-09 00:10:11 +02:00
namespace api;
table Entry {
create_timestamp:ulong;
expiry_timestamp:ulong;
data:[ubyte];
lang:string;
burn:bool;
encrypted:bool;
}
root_type Entry;