smbcloud_model/
repository.rs

1use {
2    crate::runner::Runner,
3    serde::{Deserialize, Serialize},
4};
5
6#[derive(Debug, Serialize, Deserialize)]
7#[tsync::tsync]
8pub struct Repository {
9    pub is_smbcloud_project: bool,
10    pub short_name: String,
11    pub name: String,
12    pub path: String,
13    pub runner: Runner,
14}