한정판 콘텐츠 상세

- 해당 콘텐츠를 업로드 한 크리에이터가 콘텐츠 구매자를 볼 수 있는 UI
This commit is contained in:
Yu Sung
2025-04-14 19:08:09 +09:00
parent 7e44bb8be3
commit d09ffe1973
3 changed files with 98 additions and 47 deletions

View File

@@ -40,6 +40,7 @@ struct GetAudioContentDetailResponse: Decodable {
let creator: AudioContentCreator
let previousContent: OtherContentResponse?
let nextContent: OtherContentResponse?
let buyerList: [ContentBuyer]
}
enum OrderType: String, Codable {
@@ -60,3 +61,8 @@ struct AudioContentCreator: Decodable {
let isFollow: Bool
let isNotify: Bool
}
struct ContentBuyer: Decodable {
let nickname: String
let profileImageUrl: String
}