/********
* @version : 2.1.1 - Ext.NET Pro License
* @author : Ext.NET, Inc. http://www.ext.net/
* @date : 2012-12-10
* @copyright : Copyright (c) 2007-2012, Ext.NET, Inc. (http://www.ext.net/). All rights reserved.
* @license : See license.txt and http://www.ext.net/license/.
********/
namespace Ext.Net
{
///
///
///
public partial class StoreCollection : SingleItemCollection where T : AbstractStore
{
///
///
///
[ConfigOption(typeof(LazyControlJsonConverter))]
public T Primary
{
get
{
if (this.Count > 0)
{
return this[0];
}
return null;
}
}
}
}