//! Threadgate Value Object - Reply restrictions for posts use serde::{Deserialize, Serialize}; /// Threadgate - Controls who can reply to a post /// This is a value object used for denormalized data, not a database table #[derive(Clone, Debug, Serialize, Deserialize)] pub struct Threadgate { pub actor_id: i32, pub rkey: i64, pub cid: Vec, pub allow: Option, pub post_actor_id: i32, pub post_rkey: i64, }