using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Api.Framework.EntityTmp.KuaiShou { /// /// 快手转链信息 /// public class KS_TurnUrlInfo { /// /// 口令 /// public string linkCode { get; set; } /// /// 转链链接 /// public string linkUrl { get; set; } /// /// kwai url /// public string kwaiUrl { get; set; } /// /// 快赚客推广位cps pid /// public string cpsPid { get; set; } /// /// 极速版kwai url /// public string nebulaKwaiUrl { get; set; } /// /// 短链文案 /// public string shortContent { get; set; } /// /// 长链文案 /// public string longContent { get; set; } /// /// 口令文案 /// public string commandContent { get; set; } /// /// 分享token /// public string shareToken { get; set; } /// /// 小程序短链 /// public string minaShortLink { get; set; } } }