using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WeChatCore.Entity { /// /// 基本请求构造实体 /// public class BaseRequestEntity { /// /// Uin /// public string Uin { get; set; } /// /// /// public string Sid { get; set; } /// /// /// public string Skey { get; set; } /// /// /// public string DeviceID { get; set; } } public class BaseRequestSubmitEntity { /// /// /// public BaseRequestEntity BaseRequest { get; set; } } }