1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| using AlibabaSDK.Api;
| using System;
| using System.Collections.Generic;
| using System.Text;
|
| namespace AlibabaSDK.Response
| {
| public class AlibabaProductUnFollowResponse : AlibabaApiResponse
| {
| /// <summary>
| /// code,0表示成功
| /// </summary>
| public int code { get; set; }
| /// <summary>
| /// 结果的描述
| /// </summary>
| public string message { get; set; }
| }
| }
|
|