using System; using System.Collections.Generic; using System.Text; namespace DkSdkCore.Response { public class TkGetJdGoodUrlResponse:DkResponse { public GoodUrl data { get; set; } } public class GoodUrl { public string shortUrl { get; set; } public string longUrl { get; set; } } }