mirror of
https://github.com/payden/libwsclient
synced 2025-06-13 12:53:52 +00:00
6 lines
158 B
Rust
6 lines
158 B
Rust
|
use crate::models::market_conditions::MarketConditions;
|
||
|
|
||
|
pub struct TransactionLog {
|
||
|
pub signature: String,
|
||
|
pub market_conditions: MarketConditions,
|
||
|
}
|