aboutsummaryrefslogtreecommitdiff
path: root/src/data/Snippet.js
blob: 4d5b6849de668ab9f66aad111733959a5827ac9a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
const utils = require("../utils");

/**
 * @property {String} trigger
 * @property {String} body
 * @property {String} created_by
 * @property {String} created_at
 */
class Snippet {
  constructor(props) {
    utils.setDataModelProps(this, props);
  }
}

module.exports = Snippet;