init
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
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,
|
||||
}
|
||||
Reference in New Issue
Block a user