1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct Repo {
    pub id: u64,
    pub name: String,
    pub full_name: String,
    pub html_url: String,
    pub ssh_url: String,
    pub clone_url: String,
    pub git_url: String,
    pub fork: bool,
}