mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-04-27 08:09:58 -07:00
11 lines
199 B
Rust
11 lines
199 B
Rust
use serde::Deserialize;
|
|
|
|
#[derive(Debug, Deserialize)]
|
|
pub struct QueryS {
|
|
pub i: String,
|
|
pub v: String,
|
|
pub from: Option<i64>,
|
|
pub to: Option<i64>,
|
|
pub format: Option<String>,
|
|
}
|