using Newtonsoft.Json; using Newtonsoft.Json.Linq; using System.Collections.Generic; namespace Umbraco.Core.Models.Blocks { public class BlockValue { [JsonProperty("layout")] public IDictionary Layout { get; set; } [JsonProperty("contentData")] public List ContentData { get; set; } = new List(); [JsonProperty("settingsData")] public List SettingsData { get; set; } = new List(); } }