크리에이터 채널 페이지 추가

This commit is contained in:
Yu Sung
2023-08-11 18:33:48 +09:00
parent a167840162
commit a8338e6fea
69 changed files with 4087 additions and 10 deletions

View File

@@ -0,0 +1,21 @@
//
// ReportRequest.swift
// SodaLive
//
// Created by klaus on 2023/08/11.
//
import Foundation
struct ReportRequest: Encodable {
let type: ReportType
let reason: String
let reportedMemberId: Int?
let cheersId: Int?
let audioContentId: Int?
}
enum ReportType: String, Codable {
case PROFILE, USER, CHEERS, AUDIO_CONTENT
}