public EmbeddedContentPropertyAttribute(EmbeddedContentPropertyType type, string label)
        {
            Type  = type;
            Label = label;

            Id          = -1;
            Alias       = Util.GetCamelCase(label);
            Description = string.Empty;
            ShowInTitle = true;
            Required    = false;
            Validation  = string.Empty;
        }
        public EmbeddedContentPropertyAttribute(EmbeddedContentPropertyType type, string label)
        {
            Type = type;
            Label = label;

            Id = -1;
            Alias = Util.GetCamelCase(label);
            Description = string.Empty;
            ShowInTitle = true;
            Required = false;
            Validation = string.Empty;
        }