edupage-api-forweb
Version:
Simple node.js package to manage your EduPage account.
26 lines (20 loc) • 331 B
JavaScript
const RawData = require("../lib/RawData");
class Subject extends RawData {
#edupage;
constructor(data = null) {
super(data);
/**
* @type {string}
*/
this.id = data.id;
/**
* @type {string}
*/
this.name = data.name;
/**
* @type {string}
*/
this.short = data.short;
}
}
module.exports = Subject;