16 lines
291 B
Swift
16 lines
291 B
Swift
//
|
|
// AudioContentMainItem.swift
|
|
// SodaLive
|
|
//
|
|
// Created by klaus on 7/10/25.
|
|
//
|
|
|
|
struct AudioContentMainItem: Decodable {
|
|
let contentId: Int
|
|
let creatorId: Int
|
|
let title: String
|
|
let coverImageUrl: String
|
|
let creatorNickname: String
|
|
let isPointAvailable: Bool
|
|
}
|