|
/**
|
|
* @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;
|