feat(explorer): 채널 후원 목록/등록 기능을 추가한다

This commit is contained in:
Yu Sung
2026-02-25 20:57:23 +09:00
parent e9bd1e7396
commit 32d1d970e4
17 changed files with 853 additions and 58 deletions

View File

@@ -0,0 +1,14 @@
//
// PostChannelDonationRequest.swift
// SodaLive
//
// Created by klaus on 2/25/26.
//
struct PostChannelDonationRequest: Encodable {
let creatorId: Int
let can: Int
var isSecret: Bool = false
var message: String = ""
var container: String = "ios"
}