29 lines
381 B
Rust
29 lines
381 B
Rust
/*
|
|
* vote-rs API
|
|
*
|
|
* API for conducting electronic voting
|
|
*
|
|
* OpenAPI spec version: 0.0.1
|
|
*
|
|
* Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
*/
|
|
|
|
|
|
#[allow(unused_imports)]
|
|
use serde_json::Value;
|
|
|
|
#[derive(Debug, Serialize, Deserialize)]
|
|
pub struct ElectionList {
|
|
}
|
|
|
|
impl ElectionList {
|
|
pub fn new() -> ElectionList {
|
|
ElectionList {
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|