'use strict';

import {PersistedModel} from '../../src/PersistedModel';
import * as decorators from '../../src/decorators';

@decorators.model({
  name: 'Phone', 
  connection: 'mongo'
})
export class Phone extends PersistedModel {
  
  @decorators.property({
    type: 'String'
  })
  manufacturer: string;
  
  @decorators.property({
    type: 'String'
  })
  model: string;
  
}
