public ScriptTypeDocumentation(Type scriptType, EnvironmentDocumentation[] scriptEnvironments, string name, string description)
 {
     ScriptType = scriptType;
     Name = name;
     Description = description;
     Environments = scriptEnvironments ?? new EnvironmentDocumentation[0];
 }
Example #2
0
 protected bool Equals(EnvironmentDocumentation other)
 {
     return(EnvironmentType == other.EnvironmentType);
 }
 protected bool Equals(EnvironmentDocumentation other)
 {
     return EnvironmentType == other.EnvironmentType;
 }