Exemplo n.º 1
0
 public UpdateCustomDomainMeta(string protocal = null, string apiVersion = null, RouteConfig routeConfig = null, CertConfig certConfig = null)
 {
     this.Protocol    = protocal;
     this.ApiVersion  = apiVersion;
     this.RouteConfig = routeConfig;
     this.CertConfig  = certConfig;
 }
Exemplo n.º 2
0
 public CreateCustomDomainMeta(string domainName, string protocal = null, string apiVersion = null, RouteConfig routeConfig = null, CertConfig certConfig = null) :
     base(protocal, apiVersion, routeConfig, certConfig)
 {
     this.DomainName = domainName;
 }