Files
GSFV2/ios/Classes/model/SkipSoundSettingData.swift
2024-04-10 12:51:20 +05:30

65 lines
1.3 KiB
Swift
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// SkipSoundSettingData.swift
// flutter_swift
//
// Created by on 2022/10/10.
//
class SkipSoundSettingData:Codable{
init(data:ICSkipSoundSettingData){
soundOn=data.soundOn
soundType = SkipSoundType.init(type: data.soundType)
soundVolume=data.soundVolume
fullScoreOn=data.fullScoreOn
fullScoreBPM=data.fullScoreBPM
modeParam=data.modeParam
isAutoStop=data.isAutoStop
soundMode=SkipSoundMode.init(type: data.soundMode)
}
/*
*/
var soundOn = false;
/*
*/
var soundType = SkipSoundType.ICSkipSoundTypeFemale;
/*
*/
var soundVolume:UInt = 0;
/*
*/
var fullScoreOn = false;
/*
*/
var fullScoreBPM :UInt = 0;
/*
*/
var soundMode = SkipSoundMode.ICSkipSoundModeCount;
/*
*/
var modeParam:UInt = 0;
/*
true:APP false:APP
*/
var isAutoStop = false;
}