16 lines
		
	
	
		
			296 B
		
	
	
	
		
			Swift
		
	
	
	
	
	
			
		
		
	
	
			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
 | 
						|
}
 |