/ backend / src / models / user_client_consented_scope.rs
user_client_consented_scope.rs
 1  use chrono::{DateTime, Utc};
 2  use uuid::Uuid;
 3  
 4  #[derive(Debug, Clone, sqlx::FromRow)]
 5  pub struct UserClientConsentedScope {
 6      pub id: Uuid,
 7      pub user_client_consent_id: Uuid,
 8      pub client_scope_id: Uuid,
 9      pub created_at: DateTime<Utc>,
10  }