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

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