12 lines
260 B
C#
12 lines
260 B
C#
namespace AsterNET.Manager.Event
|
|
{
|
|
public class MeetmeMuteEvent : AbstractMeetmeEvent
|
|
{
|
|
public MeetmeMuteEvent(ManagerConnection source)
|
|
: base(source)
|
|
{
|
|
}
|
|
|
|
public bool Status { get; set; }
|
|
}
|
|
} |