This commit is contained in:
cjd
2025-11-04 21:09:16 +08:00
parent 8260e293c7
commit bb90a020dc
592 changed files with 61749 additions and 27 deletions

View File

@@ -0,0 +1,26 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace DouyinApi.Model.ViewModels
{
public class WeChatPushLinkMsgContentDto
{
/// <summary>
/// 图文链接标题
/// </summary>
public string title { get; set; }
/// <summary>
/// 图文描述
/// </summary>
public string description { get; set; }
/// <summary>
/// 访问URL
/// </summary>
public string viewUrl { get; set; }
/// <summary>
/// 图片URL
/// </summary>
public string pictureUrl { get; set; }
}
}