diff --git a/src/OrchardCore/OrchardCore.ContentManagement.Abstractions/Metadata/Models/ContentTypeDefinitionDriverOptions.cs b/src/OrchardCore/OrchardCore.ContentManagement.Abstractions/Metadata/Models/ContentTypeDefinitionDriverOptions.cs index 948b5b879b6..bd080481b88 100644 --- a/src/OrchardCore/OrchardCore.ContentManagement.Abstractions/Metadata/Models/ContentTypeDefinitionDriverOptions.cs +++ b/src/OrchardCore/OrchardCore.ContentManagement.Abstractions/Metadata/Models/ContentTypeDefinitionDriverOptions.cs @@ -2,13 +2,13 @@ namespace OrchardCore.ContentManagement.Metadata.Models; public class ContentTypeDefinitionDriverOptions { - public bool ShowCreatable { get; set; } + public bool ShowCreatable { get; set; } = true; - public bool ShowListable { get; set; } + public bool ShowListable { get; set; } = true; - public bool ShowDraftable { get; set; } + public bool ShowDraftable { get; set; } = true; - public bool ShowVersionable { get; set; } + public bool ShowVersionable { get; set; } = true; - public bool ShowSecurable { get; set; } + public bool ShowSecurable { get; set; } = true; }