HAppFriend.swift
486 Bytes
//
// HAppFriend.swift
// hippo-watch Watch App
//
// Created by 权海 on 2026/6/22.
//
struct HAppFriendList: Codable{
var list: [HAppFriend]?
}
struct HAppFriend: Codable {
var id: Int?
/// 自己的userId
var user_id: Int?
/// 对方的userId
var friend_user_id: Int?
var remark_name: String?
/// 是否显示在表盘
var show_in_dial: Int?
var state: Int?
var create_time: Int?
var update_time: Int?
var avatar: String?
}