sodalive-ios/SodaLive/Sources/Settings/Notification/UpdateNotificationSettingRe...

15 lines
266 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
}