mirror of https://github.com/mastodon/flodgatt
15 lines
236 B
Rust
15 lines
236 B
Rust
|
use serde_derive::Deserialize;
|
||
|
|
||
|
#[derive(Deserialize)]
|
||
|
pub struct Media {
|
||
|
pub only_media: String,
|
||
|
}
|
||
|
#[derive(Deserialize)]
|
||
|
pub struct Hashtag {
|
||
|
pub tag: String,
|
||
|
}
|
||
|
#[derive(Deserialize)]
|
||
|
pub struct List {
|
||
|
pub list: String,
|
||
|
}
|