1//! The process model for project1.
2//!
3//! This file defines the process model of the project1.
45use crate::file_struct::FileStruct;
67/// A process state of project 1, which contains file state.
8#[derive(Default)]
9pub struct Process {
10pub file_struct: FileStruct,
11}