use nil_core::continent::Coord;
use nil_core::infrastructure::building::stable::recruit_queue::{
StableRecruitOrderId,
StableRecruitOrderRequest,
};
use nil_core::world::config::WorldId;
use serde::{Deserialize, Serialize};
#[derive(Clone, Debug, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct AddStableRecruitOrderRequest {
pub world: WorldId,
pub request: StableRecruitOrderRequest,
}
#[derive(Clone, Debug, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct CancelStableRecruitOrderRequest {
pub world: WorldId,
pub coord: Coord,
pub id: StableRecruitOrderId,
}
#[derive(Clone, Debug, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct GetStableRecruitCatalogRequest {
pub world: WorldId,
pub coord: Coord,
}