mirror of
https://github.com/Dangoware/dmp-core.git
synced 2025-04-20 06:12:53 -05:00
20 lines
227 B
Rust
20 lines
227 B
Rust
pub enum Setting {
|
|
String {
|
|
name: String,
|
|
value: String
|
|
},
|
|
Int {
|
|
name: String,
|
|
value: i32
|
|
},
|
|
Bool {
|
|
name: String,
|
|
value: bool
|
|
},
|
|
|
|
}
|
|
|
|
pub struct Form {
|
|
|
|
}
|
|
|