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:
13
src/Umbraco.Core/Models/PreValueInnerListItem.cs
Normal file
13
src/Umbraco.Core/Models/PreValueInnerListItem.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user