misc_pterodactyl-panel/resources/assets/scripts/models/server.js
2018-06-05 23:42:34 -07:00

21 lines
477 B
JavaScript

export default class Server {
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;
}
}