public static TypeReferenceSettings GetTypeReferenceSettings(this ElementSettingsModel model)
        {
            var stereotype = model.GetStereotype("Type Reference Settings");

            return(stereotype != null ? new TypeReferenceSettings(stereotype) : null);
        }
        public static Settings GetSettings(this ElementSettingsModel model)
        {
            var stereotype = model.GetStereotype("Settings");

            return(stereotype != null ? new Settings(stereotype) : null);
        }