mirror of
https://github.com/rustfs/rustfs.git
synced 2026-08-10 23:26:53 +00:00
8 lines
156 B
Rust
8 lines
156 B
Rust
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(Debug, Deserialize, Serialize, Default,Clone)]
|
|
pub struct Prefix {
|
|
pub val: String,
|
|
pub set: bool,
|
|
}
|