1
yangle
2024-12-30 2fe078000886033c774fada1f78df8b50c13e6e2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System.Xml.Serialization;
 
namespace Top.Api.Report
{
    public class TopSdkFeedbackUploadResponse : TopResponse
    {
 
        /// <summary>
        ///控制回传间隔,单位(毫秒)
        /// </summary>
        [XmlElement("upload_interval")]
        public int UploadInterval { get; set; }
 
    }
}