framework_cqrs_lib/cqrs/infra/api_key/
dbo.rs

1
2
3
4
5
6
7
use serde::{Deserialize, Serialize};

#[derive(Debug, Serialize, Deserialize, Clone)]
pub struct ApiKeyDbo {
    pub name: String,
    pub key: String,
}