public static LinkSettings GetLinkSettings(this LinkModel model)
        {
            var stereotype = model.GetStereotype("Link Settings");

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