Visual_Novel_iOS/crush/Crush/Src/Modules/Friend/Model/FriendsModel.swift

29 lines
852 B
Swift
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// FriendsModel.swift
// Crush
//
// Created by Leon on 2025/8/28.
//
struct FriendsListRequest: Codable{
var nickname: String?
var page: RequestPageData?
}
struct RelationFriend: Codable{
var heartbeatLevel: HeartbeatLevel? // "LEVEL_3"
var sex: Int? // 1
var characterName: String? // ""
var heartbeatLevelNum: Int? // 3
var aiId: Int64? // 439257063882753
var userId: Int64? // 439213911113729
var birthday: Int64? // 963072000000
var roleName: String? // ""
var tagName: String? // ""
var heartbeatVal: Double? // 25.2
var nickname: String? // "Tina"
var headImg: String? // URL
var isShow: Bool?
}