You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
785 B
30 lines
785 B
namespace learun.wechat
|
|
{
|
|
/// <summary>
|
|
/// 版 本 EasyCode EC管理后台
|
|
/// Copyright (c) 2019-present EC管理有限公司
|
|
/// 创建人:tobin
|
|
/// 日 期:2019.11.06
|
|
/// 描 述:媒体上传结果
|
|
/// </summary>
|
|
public class MediaUploadResult : OperationResultsBase
|
|
{
|
|
/// <summary>
|
|
/// 媒体文件类型,分别有图片(image)、语音(voice)、视频(video),普通文件(file)
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public string type { get; set; }
|
|
|
|
/// <summary>
|
|
/// 媒体文件上传后获取的唯一标识
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public string media_id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 媒体文件上传时间戳
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public string created_at { get; set; }
|
|
}
|
|
}
|