25 lines
390 B
Rust
25 lines
390 B
Rust
use beteran_protobuf_rust as bpr;
|
|
|
|
///
|
|
#[derive(PartialEq, Debug, Clone)]
|
|
pub struct MemberModel {
|
|
///
|
|
pub id: i64,
|
|
///
|
|
pub balance: f64,
|
|
///
|
|
pub balance_bota: f64,
|
|
///
|
|
pub balance_sum: f64,
|
|
///
|
|
pub companies: Option<String>,
|
|
///
|
|
pub oriental_play: String,
|
|
///
|
|
pub member: bpr::models::member::Member,
|
|
///
|
|
pub created_at: i64,
|
|
///
|
|
pub updated_at: i64,
|
|
}
|