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

23 lines
451 B
Swift

//
// GetMemberInfoResponse.swift
// SodaLive
//
// Created by klaus on 2023/08/10.
//
import Foundation
enum MemberRole: String, Decodable {
case USER, CREATOR, AGENT, ADMIN, BOT
}
struct GetMemberInfoResponse: Decodable {
let can: Int
let isAuth: Bool
let role: MemberRole
let messageNotice: Bool?
let followingChannelLiveNotice: Bool?
let followingChannelUploadContentNotice: Bool?
let auditionNotice: Bool?
}