omni_orchestrator/schemas/v1/models/
org.rs

1use serde::{Deserialize, Serialize};
2use chrono::{DateTime, NaiveDateTime, Utc};
3
4#[derive(Debug, sqlx::FromRow, Serialize)]
5pub struct Org {
6    pub id: i64,
7    pub name: String,
8    pub created_at: DateTime<Utc>,
9    pub updated_at: DateTime<Utc>,
10}