docx_reader/documents/
custom_item_property.rs

1use serde::Serialize;
2
3#[derive(Debug, Clone, Serialize)]
4pub struct CustomItemProperty {
5	id: String,
6}
7
8impl CustomItemProperty {
9	pub fn new(id: impl Into<String>) -> Self {
10		Self { id: id.into() }
11	}
12}