Fixes state issue to ensure that non-created variants show up as not-created

This commit is contained in:
Shannon
2018-08-15 15:13:27 +10:00
parent 66a00546d1
commit 2a15feec40
4 changed files with 14 additions and 25 deletions

View File

@@ -77,23 +77,6 @@ namespace Umbraco.Web.Models.ContentEditing
[DataMember(Name = "publishDate")]
public DateTime? PublishDate { get; set; }
/// <summary>
/// Determines if the content variant for this culture has been created
/// </summary>
[DataMember(Name = "exists")]
public bool Exists { get; set; }
///// <summary>
///// Determines if this is the variant currently being edited
///// </summary>
//[DataMember(Name = "current")]
//public bool IsCurrent { get; set; }
///// <summary>
///// If the variant is a required variant for validation purposes
///// </summary>
//[DataMember(Name = "mandatory")]
//public bool Mandatory { get; set; }
}
}