Files
sodalive-ios/SodaLive/Sources/User/CreatorFollowRequest.swift
Yu Sung d3ab1507a4 크리에이터 채널 - 팔로우와 알림설정
- 팔로잉 상태에서 알림 켜기/끄기 상태 추가
2024-09-23 15:19:15 +09:00

15 lines
235 B
Swift

//
// CreatorFollowRequest.swift
// SodaLive
//
// Created by klaus on 2023/08/11.
//
import Foundation
struct CreatorFollowRequest: Encodable {
let creatorId: Int
var isNotify: Bool = true
var isActive: Bool = true
}