staticlib/model/
move_model.rs

1
2
3
4
5
6
7
8
9
10
use common::enums::module::Module;
use serde::{Deserialize, Serialize};

#[derive(Serialize, Deserialize, Debug, Clone)]
#[serde(rename_all = "camelCase")]
pub struct MoveModel {
    pub src_path: String,
    pub dest_path: String,
    pub project : Module
}