mirror of
https://codeberg.org/Toasterson/ips.git
synced 2026-04-10 21:30:41 +00:00
11 lines
246 B
Rust
11 lines
246 B
Rust
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(Clone, Debug, PartialEq, Default, Deserialize, Serialize)]
|
|
pub enum ImageProperty {
|
|
String(String),
|
|
Boolean(bool),
|
|
#[default]
|
|
None,
|
|
Array(Vec<ImageProperty>),
|
|
Integer(i32),
|
|
}
|