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