Files
sodalive-ios/SodaLive/Sources/Settings/Notification/UpdateNotificationSettingRequest.swift
Yu Sung 6d5257e1c0 오디션
- 오디션 알림 받기 설정 추가
2025-01-09 01:02:08 +09:00

16 lines
296 B
Swift

//
// 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
var audition: Bool? = nil
}