public static bool HasPathSettings(this PathDrawSettingsModel model)
 {
     return(model.HasStereotype("Path Settings"));
 }
 public bool Equals(PathDrawSettingsModel other)
 {
     return(Equals(_element, other?._element));
 }
        public static PathSettings GetPathSettings(this PathDrawSettingsModel model)
        {
            var stereotype = model.GetStereotype("Path Settings");

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