Skip to content

Instantly share code, notes, and snippets.

@trnktms
Created January 13, 2021 15:23
Embed
What would you like to do?
namespace Discovering.Sitecore10.Models
{
public class ChildrenBlockModel
{
[SitecoreComponentField(Name = "items")]
public IEnumerable<ChildContentBlockModel> Children { get; set; }
}
public class ChildContentBlockModel
{
[SitecoreComponentField(Name = "fields")]
public ContentBlockModel Fields { get; set; }
}
public class ContentBlockModel
{
[SitecoreComponentField]
public TextField Title { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment