misc_pterodactyl-panel/resources/assets/scripts/models/server.js

22 lines
477 B
JavaScript
Raw Normal View History

export default class Server {
2018-06-06 06:42:34 +00:00
constructor({
identifier,
uuid,
name,
node,
description,
allocation,
limits,
feature_limits
}) {
this.identifier = identifier;
this.uuid = uuid;
this.name = name;
this.node = node;
this.description = description;
this.allocation = allocation;
this.limits = limits;
this.feature_limits = feature_limits;
}
2018-05-28 21:11:23 +00:00
}