public static bool HasSettings(this AssociationDestinationEndSettingsModel model)
 {
     return(model.HasStereotype("Settings"));
 }
 public bool Equals(AssociationDestinationEndSettingsModel other)
 {
     return(Equals(_element, other?._element));
 }
        public static Settings GetSettings(this AssociationDestinationEndSettingsModel model)
        {
            var stereotype = model.GetStereotype("Settings");

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