public static FileSettings GetFileSettings(this FileTemplateModel model)
        {
            var stereotype = model.GetStereotype("File Settings");

            return(stereotype != null ? new FileSettings(stereotype) : null);
        }
 public static bool HasFileSettings(this FileTemplateModel model)
 {
     return(model.HasStereotype("File Settings"));
 }
Пример #3
0
 public bool Equals(FileTemplateModel other)
 {
     return(Equals(_element, other?._element));
 }