Files
k-tv/crates/application/src/channels/queries.rs

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,
}