2023-04-14 21:29:53 +04:00
|
|
|
use serde::{ Serialize, Deserialize };
|
2023-03-31 21:19:59 +04:00
|
|
|
|
|
|
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
|
|
|
pub struct CarStation {
|
|
|
|
pub id: i32,
|
|
|
|
pub address: String
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
|
|
|
pub struct BindingCarStation {
|
|
|
|
pub address: String
|
|
|
|
}
|