This commit is contained in:
11
src/data/pool_match.rs
Normal file
11
src/data/pool_match.rs
Normal file
@@ -0,0 +1,11 @@
|
||||
use serde::{Deserialize, Serialize};
|
||||
|
||||
#[derive(Serialize, Deserialize, Clone)]
|
||||
pub struct PoolMatch {
|
||||
pub players: Vec<String>,
|
||||
pub winner: String,
|
||||
}
|
||||
#[derive(Serialize, Deserialize, Clone)]
|
||||
pub struct PoolMatchList {
|
||||
pub pool_matches: Vec<PoolMatch>,
|
||||
}
|
||||
Reference in New Issue
Block a user