using System; using System.Collections.Generic; using System.Text; namespace DkSdkCore.Response { public class GetTkTiktokKolProductShareResponse:DkResponse { public TiktokKolProductShare data { get; set; } } public class TiktokKolProductShare { public string dyDeeplink { get; set; } public string dyPassword { get; set; } public QrCode qrCode { get; set; } } public class QrCode { public int height { get; set; } public string url { get; set; } public int width { get; set; } } }