aboutsummaryrefslogtreecommitdiffstats
path: root/adenosine-pds/src/models.rs
blob: 8f855c5aa82d954349a086b3e86a63d1458ef0b5 (plain)
1
2
3
4
5
6
7
8
9
10
use serde;

#[allow(non_snake_case)]
#[derive(Debug, serde::Serialize, serde::Deserialize, Clone, PartialEq, Eq)]
pub struct AtpSession {
    pub did: String,
    pub name: String,
    pub accessJwt: String,
    pub refreshJwt: String,
}