mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-11-06 11:18:54 -05:00
20 lines
341 B
Python
20 lines
341 B
Python
from typing import Optional, Dict
|
|
|
|
import discord
|
|
|
|
from dataclasses import dataclass
|
|
|
|
|
|
@dataclass
|
|
class MuteResponse:
|
|
success: bool
|
|
reason: Optional[str]
|
|
user: discord.Member
|
|
|
|
|
|
@dataclass
|
|
class ChannelMuteResponse(MuteResponse):
|
|
channel: discord.abc.GuildChannel
|
|
old_overs: Optional[Dict[str, bool]]
|
|
voice_mute: bool
|