function BlogLine(blog){
	this.blog=blog;
	this.id=-1;
	this.txt='';
	this.createTime=0;
	this.email='';
	this.name='';
}

BlogLine.prototype={
	saveNew: function(){
		
		
	},
	
	loadById: function(){
		
		
	},
	
	getBlogId: function(){
		return this.blog.id;
	}
}