Add status to project information

This commit is contained in:
Campbell Alden 2023-07-22 00:23:44 +09:00
parent c9dd247175
commit b6497d499f
4 changed files with 4 additions and 3 deletions

View file

@ -19,6 +19,7 @@ pub enum Status {
pub struct Project {
pub id: String,
pub title: String,
pub status: Status,
}
#[derive(Deserialize, Debug)]