package com.guru.facebook.feed 
{
	import com.guru.facebook.feed.base.FeedBase;
	/**
	 * ...
	 * @author Eddy Lee
	 */
	public class AfterGameFeed extends FeedBase
	{
		
		public function AfterGameFeed() 
		{
			mMessage_str = "This is testing message 2";
			mName_str = "This is tester name 2";
			mHref_str = "http://www.yahoo.com.hk/";
			mCaption_str = "This is testing caption 2";
			mDescription_str = "This is testing description 2";
			mImage_str = "http://www.oceanempiregame.com/iframe/swf/image/face.jpg";
			
			this.addProperties("name", "content 2");
			this.addProperties("rating", "6 stars");
			this.addProperties("others", "yahoo", "http://www.yahoo.com.hk");
		}
		
	}

}