U4-8834 Removing code assigning PropertyData IDs for new properties even though it isn't used

This commit is contained in:
Claus
2016-08-09 13:39:40 +02:00
parent 82c5b91deb
commit 2279e6cc53
2 changed files with 6 additions and 11 deletions

View File

@@ -10,6 +10,12 @@ namespace Umbraco.Web.Models.ContentEditing
[DataContract(Name = "property", Namespace = "")]
public class ContentPropertyBasic
{
/// <summary>
/// This is the cmsPropertyData ID
/// </summary>
/// <remarks>
/// This is not really used for anything
/// </remarks>
[DataMember(Name = "id", IsRequired = true)]
[Required]
public int Id { get; set; }