// SPDX-FileCopyrightText: OpenTalk GmbH <mail@opentalk.eu>
//// SPDX-License-Identifier: EUPL-1.2
useserde::{Deserialize, Serialize};/// The different timer variations
#[derive(Clone, Copy, PartialEq, Eq, Debug, Serialize, Deserialize)]#[serde(rename_all ="snake_case", tag ="kind")]pubenumKind{/// The timer continues to run until a moderator stops it.
Stopwatch,/// The timer continues to run until its duration expires or if a moderator stops it beforehand.
Countdown {/// The duration of the countdown
duration:u32,},}