2020-12-28 14:55:48 +08:00
|
|
|
|
namespace Hncore.Wx.Open
|
|
|
|
|
|
{
|
|
|
|
|
|
public class UploadMediaResponse:ResponseBase
|
|
|
|
|
|
{
|
|
|
|
|
|
public string type { get; set; }
|
|
|
|
|
|
public string media_id { get; set; }
|
|
|
|
|
|
public int created_at { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
public class UploadImageMediaResponse : ResponseBase
|
|
|
|
|
|
{
|
|
|
|
|
|
public string url { get; set; }
|
|
|
|
|
|
public string media_id { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|