public static Settings GetSettings(this AssociationSourceEndSettingsModel model)
        {
            var stereotype = model.GetStereotype("Settings");

            return(stereotype != null ? new Settings(stereotype) : null);
        }
 public static bool HasSettings(this AssociationSourceEndSettingsModel model)
 {
     return(model.HasStereotype("Settings"));
 }
 public bool Equals(AssociationSourceEndSettingsModel other)
 {
     return(Equals(_element, other?._element));
 }