@ginstone/nga-api
Version:
15 lines (14 loc) • 393 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.FavorFolder = void 0;
class FavorFolder {
constructor(raw) {
this.id = raw.id;
this.type = raw.type;
this.name = raw.name;
this.bytes = raw.bytes;
this.length = raw.length;
this.defaultFolder = raw.default === 1;
}
}
exports.FavorFolder = FavorFolder;