Skip to main content

Mountain/RPC/Workspace/
WorkspaceFolder.rs

1#![allow(non_snake_case)]
2
3//! Single workspace folder DTO.
4
5use serde::{Deserialize, Serialize};
6
7#[derive(Debug, Clone, Serialize, Deserialize)]
8pub struct Struct {
9	pub uri:String,
10	pub name:String,
11}