added MarkerPayload struct to handle marker requests payload

This commit is contained in:
Valmo Trindade
2024-09-11 19:14:22 -03:00
parent 3c14e03585
commit 69093504b7

View File

@@ -15,4 +15,10 @@ pub struct Marker {
pub ce: Option<i32>,
pub hae: Option<i32>,
pub le: Option<i32>,
}
pub struct MarkerPayload {
pub api_address: String,
pub api_auth_token: String,
pub markers: [Marker],
}