Gets contextual culture server validation working

This commit is contained in:
Shannon
2018-08-02 20:00:35 +10:00
parent d926f1b3a2
commit 1f25847cd7
19 changed files with 254 additions and 142 deletions

View File

@@ -15,5 +15,13 @@ namespace Umbraco.Web.Models.ContentEditing
public string Description { get; set; }
public bool IsRequired { get; set; }
public string ValidationRegExp { get; set; }
/// <summary>
/// The culture for the property which is only relevant for variant properties
/// </summary>
/// <remarks>
/// Since content currently is the only thing that can be variant this will only be relevant to content
/// </remarks>
public string Culture { get; set; }
}
}