This commit is contained in:
2026-07-14 02:51:16 +02:00
parent c96101ec3d
commit b40373f3e3
10 changed files with 120 additions and 16 deletions
+17
View File
@@ -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,
}