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.
 
 
 
Tiobon.Web.Core/Tiobon.Core.Model/ViewModels/WeChatPushVideoContentDto.cs

22 lines
529 B

using System;
using System.Collections.Generic;
using System.Text;
namespace Tiobon.Core.Model.ViewModels
{
public class WeChatPushVideoContentDto
{
/// <summary>
/// 视频标题
/// </summary>
public string title { get; set; }
/// <summary>
/// 视频封面mediaID
/// </summary>
public string pictureMediaID { get; set; }
/// <summary>
/// 视频mediaID
/// </summary>
public string videoMediaID { get; set; }
}
}