21 lines
391 B
C#
21 lines
391 B
C#
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; }
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|