using System; using System.Collections.Generic; using System.Text; namespace DouyinApi.Model.ViewModels { /// /// 微信keyword所需Dto /// 作者:胡丁文 /// 时间:2020-4-8 09:18:08 /// public class WeChatPushCardMsgValueColorDto { /// /// 内容 /// public string value { get; set; } /// /// 文字颜色 /// public string color { get; set; } = "#173177"; } }