//--------------------------------------
//               PowerUI
//
//        For documentation or 
//    if you have any issues, visit
//        powerUI.kulestar.com
//
//    Copyright  2013 Kulestar Ltd
//          www.kulestar.com
//--------------------------------------

using System;
using System.Collections;
using System.Collections.Generic;

namespace Json{

	/// <summary>
	/// An object returned from JSON text.
	/// </summary>

	public class JSIndexedArray:JSArray{
		
		public JSIndexedArray(){
			IndexedMode=1;
		}
		
	}
	
}