using System; using System.Collections.Generic; using System.Text; namespace Tiobon.Core.Model.ViewModels { /// /// 微信二维码预装信息DTO /// public class WeChatQRDto { public int expire_seconds { get; set; } public string action_name { get; set; } public WeChatQRActionDto action_info { get; set; } } }