Added class properties jsdoc.

This commit is contained in:
Rand McKinney 2014-10-06 10:15:26 -07:00
parent 8d851e8b5f
commit 6de9645f45
1 changed files with 6 additions and 10 deletions

View File

@ -14,15 +14,11 @@ var properties = {
};
/**
* The Email Model.
*
* **Properties**
*
* - `to` - String (required)
* - `from` - String (required)
* - `subject` - String (required)
* - `text` - String
* - `html` - String
* @property {String} to Email addressee. Required.
* @property {String} from Email sender address. Required.
* @property {String} subject Email subject string. Required.
* @property {String} text Text body of email.
* @property {String} html HTML body of email.
*
* @class
* @inherits {Model}