Files
Api/DouyinApi.Model/ViewModels/WeChatPushTextContentDto.cs

15 lines
277 B
C#
Raw Permalink Normal View History

2025-11-04 21:09:16 +08:00
using System;
using System.Collections.Generic;
using System.Text;
namespace DouyinApi.Model.ViewModels
{
public class WeChatPushTextContentDto
{
/// <summary>
/// 文字消息
/// </summary>
public string text { get; set; }
}
}