public ArgumentDescription(string argumentName, Type type, Func <Type, string> schemaGenerator) { Name = argumentName; TypeDescription = new TypeDescription(type, schemaGenerator); }
public EndpointDescription(string name, Type type, Func <Type, string> schemaGenerator) { Name = name; TypeDescription = new TypeDescription(type, schemaGenerator); }