1
0
mirror of https://gitlab.com/timvisee/send.git synced 2024-09-19 23:51:32 +02:00
send/server/metadata.js
2018-02-09 15:03:05 -08:00

14 lines
295 B
JavaScript

class Metadata {
constructor(obj) {
this.dl = +obj.dl || 0;
this.dlimit = +obj.dlimit || 1;
this.pwd = String(obj.pwd) === 'true';
this.owner = obj.owner;
this.metadata = obj.metadata;
this.auth = obj.auth;
this.nonce = obj.nonce;
}
}
module.exports = Metadata;