using System.Collections.Generic;
public class MyFriendReviewDataItem
{
///
///
///
public int friend_id { get; set; }
///
///
///
public int friend_user_id { get; set; }
///
///
///
public int friend_other_user { get; set; }
///
///
///
public int friend_status { get; set; }
///
///
///
public string friend_remark { get; set; }
///
///
///
public string friend_time { get; set; }
///
///
///
public string friend_check_time { get; set; }
///
/// 王五
///
public string user_username { get; set; }
///
///
///
public string user_image { get; set; }
}
public class MyFriendReviewData
{
///
///
///
public int code { get; set; }
///
///
///
public string msg { get; set; }
///
///
///
public List data { get; set; }
}