예제 #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();
}