var Model = Backbone.Model.extend({
  types: ['Backbone.Model', 'Barista.Model'],
  isA  : function(type) {
    return this.types.indexOf(type) > -1;
  }