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

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