using System; using System.Collections.Generic; using System.Text; using YouZanSDKStandard.Api.Response; namespace YouZanSDKStandard.Api.Request { public class YouZanDecryptBatchRequest : IRequest { public string GetApiName() { return "youzan.cloud.secret.decrypt.batch"; } public string GetApiVersion() { return "1.0.0"; } public IDictionary GetParameters() { Dictionary dic = new Dictionary(); dic.Add("sources", sources); return dic; } public List sources { get; set; } public string ResponseJsonPrefix(string strRet) { return strRet; } public void Validate() { //throw new NotImplementedException(); } } }