// TODO: This file was created by bulk-decaffeinate.
// Sanity-check the conversion and remove this comment.
app.Model = class Model {
  constructor(attributes) {
    for (var key in attributes) {
      var value = attributes[key];
      this[key] = value;
    }
  }
};