Skip to content

Instantly share code, notes, and snippets.

@trnktms
Created January 13, 2021 15:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save trnktms/fcb8df88210a28cd177e63bb843b6a23 to your computer and use it in GitHub Desktop.
Save trnktms/fcb8df88210a28cd177e63bb843b6a23 to your computer and use it in GitHub Desktop.
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