Skip to content

Instantly share code, notes, and snippets.

@trnktms
Created January 15, 2021 07:30
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/ab84e7cec365ce56d518a9339c6c7ae5 to your computer and use it in GitHub Desktop.
Save trnktms/ab84e7cec365ce56d518a9339c6c7ae5 to your computer and use it in GitHub Desktop.
namespace Discovering.Sitecore10.Models
{
public class ChildrenBlockModel
{
[SitecoreComponentField(Name = "items")]
public IEnumerable<ItemLinkField<ContentBlockModel>> Children { 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