using System.Collections.Generic;
namespace SiteCore.taoObj
{
public class api_userId_response
{
public Response response { get; set; }
public class Response
{
///
///
///
public Data data { get; set; }
///
///
///
public string success { get; set; }
public int code { get; set; }
}
public class Data
{
///
///
///
public List content { get; set; }
}
public class ContentItem
{
///
///
///
public string buyerOpenUid { get; set; }
///
///
///
public string buyerNick { get; set; }
///
///
///
}
}
}