14 lines
251 B
Swift
14 lines
251 B
Swift
//
|
|
// GetLatestFinishedLiveResponse.swift
|
|
// SodaLive
|
|
//
|
|
// Created by klaus on 7/22/25.
|
|
//
|
|
|
|
struct GetLatestFinishedLiveResponse: Decodable {
|
|
let memberId: Int
|
|
let nickname: String
|
|
let profileImageUrl: String
|
|
let timeAgo: String
|
|
}
|