Files
sodalive-ios/SodaLive/Sources/Live/Room/Routlette/Config/RouletteOption.swift
Yu Sung cab719c774 룰렛 변경
- 확률 수동 설정
- 여러개의 룰렛이 켜져있을 때 선택하여 돌리기
- 후원 히스토리에 룰렛 히스토리
2024-05-11 02:56:52 +09:00

19 lines
318 B
Swift

//
// RouletteOption.swift
// SodaLive
//
// Created by klaus on 2023/12/05.
//
import SwiftUI
class RouletteOption: ObservableObject {
var title: String
var percentage: String = ""
init(title: String, percentage: String) {
self.title = title
self.percentage = percentage
}
}