15 lines
230 B
Swift
15 lines
230 B
Swift
//
|
|
// UserActionRequest.swift
|
|
// SodaLive
|
|
//
|
|
// Created by klaus on 5/17/25.
|
|
//
|
|
|
|
struct UserActionRequest: Encodable {
|
|
let actionType: ActionType
|
|
}
|
|
|
|
enum ActionType: String, Encodable {
|
|
case LIVE_CONTINUOUS_LISTEN_30
|
|
}
|