설정 페이지 추가

This commit is contained in:
Yu Sung
2023-08-10 22:05:14 +09:00
parent d06f4d6a36
commit dbeb15ba17
24 changed files with 1368 additions and 4 deletions

View File

@@ -0,0 +1,14 @@
//
// UpdateNotificationSettingRequest.swift
// SodaLive
//
// Created by klaus on 2023/08/10.
//
import Foundation
struct UpdateNotificationSettingRequest: Encodable {
var live: Bool? = nil
var uploadContent: Bool? = nil
var message: Bool? = nil
}