systemprompt_security/session/
claims.rs

1use systemprompt_models::auth::UserType;
2
3#[derive(Debug, Clone)]
4pub struct ValidatedSessionClaims {
5    pub user_id: String,
6    pub session_id: String,
7    pub user_type: UserType,
8}