Skip to content

Instantly share code, notes, and snippets.

@joshuwa
Created February 19, 2013 16:29
Show Gist options
  • Save joshuwa/4987461 to your computer and use it in GitHub Desktop.
Save joshuwa/4987461 to your computer and use it in GitHub Desktop.
using System.Collections;
using Glass.Sitecore.Mapper.Configuration.Attributes;
namespace SCApplication.Core.Interfaces
{
[SitecoreClass]
public interface IHomePage: IBasePage
{
[SitecoreChildren(IsLazy = true, InferType = true)]
IEnumerable Children { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment