using System; using System.Collections.Generic; using System.Text; namespace YouZanSDKStandard.Api.Response { public class YouZanAppUrlinkGetResponse : YouZanResponse { public YouZanAppUrlinkGetDomain data { get; set; } } public class YouZanAppUrlinkGetDomain { public string url_desc { get; set; } public bool is_expire { get; set; } public long expired_time { get; set; } public long kdt_id { get; set; } public string url_link { get; set; } } }