Files
sodalive-ios/SodaLive/Sources/Settings/Notification/UpdateNotificationSettingRequest.swift
2023-08-10 22:05:14 +09:00

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
}