revalue flag on basic datatype

This commit is contained in:
Per Ploug Krogslund
2015-08-11 11:51:30 +02:00
parent d7f9cb0278
commit 1ff7b34b86

View File

@@ -18,6 +18,10 @@ namespace Umbraco.Web.Models.ContentEditing
[DataMember(Name = "group")]
[ReadOnly(true)]
public string Group { get; set; }
public string Group { get; set; }
[DataMember(Name = "hasPrevalues")]
[ReadOnly(true)]
public bool HasPrevalues { get; set; }
}
}