using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Api.Framework.EntityTmp.Douyin
{
///
/// 转链信息
///
public class ShareInfo
{
///
/// 抖口令
///
public string dy_password { get; set; }
///
/// deeplink
///
public string dy_deeplink { get; set; }
public string dy_zlink { get; set; }
public string share_link { get; set; }
///
/// 二维码信息
///
public DyQrCode qr_code { get; set; }
}
public class DyQrCode
{
///
/// 图片地址
///
public string url { get; set; }
///
/// 宽度
///
public int width { get; set; }
///
/// 高度
///
public int height { get; set; }
}
///
/// 优惠价推广链接
///
public class CouponLink
{
///
/// 是否有优惠价&优惠券 0有优惠券 1没有优惠券
///
public long coupon_status { get; set; }
///
/// 优惠券口令
///
public string share_command { get; set; }
///
/// deeplink
///
public string deeplink { get; set; }
///
/// 站外H5领券链接
///
public string share_link { get; set; }
///
/// 二维码信息
///
public DyQrCode qr_code { get; set; }
}
}