12 lines
162 B
Rust
12 lines
162 B
Rust
use uuid::Uuid;
|
|
|
|
pub struct GetChannelQuery {
|
|
pub channel_id: Uuid,
|
|
}
|
|
|
|
pub struct ListChannelsQuery;
|
|
|
|
pub struct ListByOwnerQuery {
|
|
pub owner_id: Uuid,
|
|
}
|