Merge pull request #2763 from OptimisticCoder/U4-7030-Using-radiobuttonlist-prevalue-editor

U4-7030 enable use of radiobuttonlist pre editor
This commit is contained in:
Sebastiaan Janssen
2018-07-18 15:29:20 +02:00
committed by GitHub
6 changed files with 32 additions and 3 deletions

View File

@@ -0,0 +1,13 @@
using Newtonsoft.Json;
namespace Umbraco.Core.Models
{
public class PreValueInnerListItem
{
[JsonProperty("value")]
public object Value { get; set; }
[JsonProperty("label")]
public string Label { get; set; }
}
}