Does the metadata
or types
services hold the relationship between types anywhere?
public class MyRequest : IReturn<MyResponse> {
public MyType Complex { get; set; }
}
public class MyType {
public string Foo { get; set; }
}
public class MyResponse {
public string Bar { get; set; }
}
Rationale is that we want to be able to filter all types at a request/s level and we need to recursively include responses and complex sub types… and we’re lazy!