in an application I've got a request that inherits from a base class, I've got a strange problem when I look at the metadata I only get "Max" serialized and not also "Header"
When executing the application it works...it seems to be something wrong when preparing the request stub
public class SomeRequest : SomeBaseClass<int>
{
public int Max { get; set; }
}
public class SomeBaseClass<T>
{
public Header SomeHeader { get; set; }
public T Response {get;set;}
}
public class Header
{
public int IDUser { get; set; }
public string Name { get; set; }
}
Can anyone help me on this?
P.S. I'm aware the hinerithance inheritance is not good in SS but I've got almost all requests that needs the same header parameter
Thanks