mirror of
https://github.com/rustfs/rustfs.git
synced 2026-08-26 05:56:50 +00:00
7 lines
151 B
Rust
7 lines
151 B
Rust
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(Debug, Deserialize, Serialize, Default, Clone)]
|
|
pub struct DelMarkerExpiration {
|
|
pub days: usize,
|
|
}
|