Don't allow selecting non-element types when composing element types

This commit is contained in:
Kenn Jacobsen
2019-08-16 13:13:22 +02:00
committed by Sebastiaan Janssen
parent a7f1001c53
commit 604bb6b526
8 changed files with 23 additions and 12 deletions

View File

@@ -16,5 +16,10 @@
/// along with any content types that have matching property types that are included in the filtered content types
/// </summary>
public string[] FilterContentTypes { get; set; }
/// <summary>
/// Wether the content type is currently marked as an element type
/// </summary>
public bool IsElement { get; set; }
}
}