18 lines
275 B
Rust
18 lines
275 B
Rust
use crate::models::prelude::Channel;
|
|
use uuid::Uuid;
|
|
|
|
pub struct ChannelCreated {
|
|
server_id: Uuid,
|
|
channel: Channel,
|
|
}
|
|
|
|
pub struct ChannelUpdated {
|
|
server_id: Uuid,
|
|
channel: Channel,
|
|
}
|
|
|
|
pub struct ChannelDeleted {
|
|
server_id: Uuid,
|
|
channel: Channel,
|
|
}
|