1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
use serde::{Deserialize, Serialize};

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Collaborator {
    /// Username of the collaborator
    username: String,
    /// Role of the collaborator
    role: String,
}

impl Collaborator {
    pub fn new<T: ToString, S: ToString>(username: T, role: S) -> Self {
        Self {
            username: username.to_string(),
            role: role.to_string(),
        }
    }

    pub fn username(&self) -> &str {
        &self.username
    }

    pub fn role(&self) -> &str {
        &self.role
    }
}