nil_payload/response/infrastructure/
stable.rs1use derive_more::{Deref, DerefMut, From, Into};
5use nil_core::infrastructure::building::r#impl::stable::recruit_catalog::StableRecruitCatalog;
6use serde::{Deserialize, Serialize};
7
8#[cfg(feature = "axum")]
9use nil_payload_macros::IntoJsonResponse;
10
11#[derive(Clone, Debug, Deref, DerefMut, From, Into, Deserialize, Serialize)]
12#[cfg_attr(feature = "axum", derive(IntoJsonResponse))]
13#[cfg_attr(feature = "typescript", derive(ts_rs::TS))]
14#[cfg_attr(feature = "typescript", ts(export))]
15pub struct GetStableRecruitCatalogResponse(pub StableRecruitCatalog);