I'm working in a Sitecore project that uses Glass and code generation to create glass classes. I wanted an easy way to get a child list on every Glass class type so on IGlassBase I added
IEnumerable<GlassBase> Children { get; set; }
and on GlassBase
[SitecoreChildren]
public virtual IEnumerable<GlassBase> Children { get; set; }
but I am getting a runtime error saying that Children cannot be added twice. Any ideas?