soundboard
All checks were successful
/ upload (release) Successful in 27s

This commit is contained in:
pavel 2026-02-24 01:41:24 +01:00
commit 33da605c03
13 changed files with 534 additions and 9 deletions

View file

@ -84,3 +84,14 @@ pub struct Invite {
pub max_uses: Option<i32>,
pub use_count: i32,
}
#[derive(Debug, Clone, Serialize)]
pub struct SoundboardSound {
pub id: Uuid,
pub guild_id: Uuid,
pub name: String,
pub icon: String,
pub file_path: String,
pub created_by_user_id: Uuid,
pub created_at: DateTimeWithTimeZone,
}