1
use std::borrow::Cow;
2

            
3
use serde::{Deserialize, Serialize};
4

            
5
4
#[derive(Debug, PartialEq, Eq, Serialize, Deserialize, Default)]
6
pub struct ProjectModel<'a> {
7
1
    pub name: Cow<'a, str>,
8
1
    pub authors: Vec<Cow<'a, str>>,
9
1
    pub compilation_db: bool,
10
1
    pub code_root: Option<Cow<'a, str>>,
11
}