1
0
mirror of https://github.com/SineVector241/VoiceCraft-MCBE_Proximity_Chat.git synced 2024-09-18 21:00:48 +00:00
VoiceCraft-MCBE_Proximity_Chat/VoiceCraft.Core/Participant.cs
2024-04-17 16:10:55 +10:00

16 lines
337 B
C#

namespace VoiceCraft.Core
{
public abstract class Participant
{
public string Name { get; set; }
public bool Deafened { get; set; }
public bool Muted { get; set; }
public long LastSpoke { get; set; }
public Participant(string name)
{
Name = name;
}
}
}