namespace ServiceClientGenerator.Endpoints { /// /// Object model for ClientContextParameter /// ClientContextParameter is used to extend ClientConfig with new properties /// public class ClientContextParameter { public string name { get; set; } public string documentation { get; set; } public string type { get; set; } public string nativeType { get { return type.ToNativeType(); } } } }