마이페이지 - 구매목록 추가
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
//
|
||||
// GetAudioContentOrderListResponse.swift
|
||||
// SodaLive
|
||||
//
|
||||
// Created by klaus on 2023/08/24.
|
||||
//
|
||||
|
||||
import Foundation
|
||||
|
||||
struct GetAudioContentOrderListResponse: Decodable {
|
||||
let totalCount: Int
|
||||
let items: [GetAudioContentOrderListItem]
|
||||
}
|
||||
|
||||
struct GetAudioContentOrderListItem: Decodable {
|
||||
let contentId: Int
|
||||
let coverImageUrl: String
|
||||
let title: String
|
||||
let themeStr: String
|
||||
let duration: String?
|
||||
let isAdult: Bool
|
||||
let orderType: OrderType
|
||||
let likeCount: Int
|
||||
let commentCount: Int
|
||||
}
|
Reference in New Issue
Block a user