ramirez/src/data/Snippet.js

15 lines
270 B
JavaScript

/**
* @property {String} trigger
* @property {String} body
* @property {Number} is_anonymous
* @property {String} created_by
* @property {String} created_at
*/
class Snippet {
constructor(props) {
Object.assign(this, props);
}
}
module.exports = Snippet;