示例#1
0
function Album() {
	achilles.Model.call(this);

	this.define("title", String);
	this.define("rating", Number);
	this.define("songs", [Song]);
}
示例#2
0
文件: Post.js 项目: D0VK3/pandora
function Post() {
	achilles.Model.call(this);

	this.define("title", String);
	this.define("content", Content);
	this.define("date", Date);

	this.content = new Content();
}