opentalk-roomserver-types-timer 0.0.5

OpenTalk RoomServer Types Timer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// SPDX-FileCopyrightText: OpenTalk GmbH <mail@opentalk.eu>
//
// SPDX-License-Identifier: EUPL-1.2

use serde::{Deserialize, Serialize};

use crate::TimerConfig;

/// A timer has been started
#[derive(Clone, Debug, PartialEq, Eq, Serialize, Deserialize)]
pub struct Started {
    /// Config of the started timer
    #[serde(flatten)]
    pub config: TimerConfig,
}