mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-23 01:52:44 +02:00
14 lines
270 B
Swift
14 lines
270 B
Swift
//
|
|
// Copyright 2022-2024 New Vector Ltd.
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
// Please see LICENSE in the repository root for full details.
|
|
//
|
|
|
|
public enum VoiceBroadcastInfoState: String {
|
|
case started
|
|
case paused
|
|
case resumed
|
|
case stopped
|
|
}
|