using System; using System.Collections.Generic; using Top.Api.Util; namespace Top.Api.Request { /// /// TOP API: taobao.appip.get /// public class AppipGetRequest : BaseTopRequest { #region ITopRequest Members public override string GetApiName() { return "taobao.appip.get"; } public override IDictionary GetParameters() { TopDictionary parameters = new TopDictionary(); if (this.otherParams != null) { parameters.AddAll(this.otherParams); } return parameters; } public override void Validate() { } #endregion } }