Configurable Plugin in 10.x multi line string control?

In a plugin in version 8.x you could define the control type for a configurable plugin property.  Wondering the equivalent for the following in 10.x - as of now, it is not an option to specify a "ControlType" property.

ControlType = typeof(Telligent.DynamicConfiguration.Controls.MultilineStringControl)

var assemblies = new Property {
    Id = BadgeConstants.ADDITIONAL_ASSEMBLIES,
    LabelText = "Additional Assemblies.",
    DataType = "String",
    OrderNumber = 1,
    DefaultValue = "",
    DescriptionText = "A csv string containing",
    ControlType = typeof(Telligent.DynamicConfiguration.Controls.MultilineStringControl)
};

Parents Reply
  •                 // TODO:  Add MultilineStringControl type here.
                    // Assemblies
                    var assemblies = new Property {
                        Id = BadgeConstants.ADDITIONAL_ASSEMBLIES,
                        LabelText = "Additional Assemblies.",
                        DataType = "String",
                        OrderNumber = 1,
                        DefaultValue = "",
                        DescriptionText = "A csv string containing assembly names that implement various badging interfaces such as IRequirementType or IGamificationMetric. (ex: Microsoft.Assembly.dll)",
                        Template = "string",  
                         
                    };
                    assemblies.Options.Add("rows", "10");

Children