flagsmith_flag_engine/projects/
mod.rs

1use super::organisations;
2use super::segments;
3use serde::{Deserialize, Serialize};
4
5#[derive(Serialize, Deserialize, Debug, Clone)]
6pub struct Project {
7    pub id: u32,
8    pub name: String,
9    pub organisation: organisations::Organisation,
10    pub hide_disabled_flags: bool,
11    pub segments: Vec<segments::Segment>,
12}