28 lines
566 B
Rust

/*
* Gamenight
*
* Api specifaction for a Gamenight server
*
* The version of the OpenAPI document: 1.0
* Contact: dennis@brentj.es
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct Participants {
#[serde(rename = "participants")]
pub participants: Vec<String>,
}
impl Participants {
pub fn new(participants: Vec<String>) -> Participants {
Participants {
participants,
}
}
}