Files

17 lines
384 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
{
/// <summary>
/// 微信二维码预装信息DTO
/// </summary>
public class WeChatQRDto
{
public int expire_seconds { get; set; }
public string action_name { get; set; }
public WeChatQRActionDto action_info { get; set; }
}
}