Files
sodalive-ios/SodaLive/Sources/Live/Room/Routlette/Config/RouletteOption.swift
Yu Sung 208fc77b7f 룰렛 최대 개수 수정
AS-IS : 최대 6개
TO-BE : 최대 10개

룰렛 확률 수정
AS-IS : 소수점 없음
TO-BE : 소수점 2자리
2023-12-26 15:56:04 +09:00

20 lines
328 B
Swift

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