2022-10-13 13:18:06 -04:00
|
|
|
|
using System.Text.Json.Serialization;
|
2022-10-05 16:29:31 -04:00
|
|
|
|
|
|
|
|
|
namespace Mute;
|
|
|
|
|
|
|
|
|
|
public class MuteStateMeta
|
|
|
|
|
{
|
2022-10-24 19:58:12 -04:00
|
|
|
|
public string? Reason { get; set; }
|
2022-10-05 16:29:31 -04:00
|
|
|
|
public DateTime? Expiration { get; set; }
|
|
|
|
|
public MuteState MuteState { get; set; }
|
2022-10-13 13:18:06 -04:00
|
|
|
|
[JsonIgnore] public bool CommandExecuted { get; set; }
|
2022-10-05 16:29:31 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public enum MuteState
|
|
|
|
|
{
|
|
|
|
|
Muted,
|
|
|
|
|
Unmuting,
|
|
|
|
|
Unmuted
|
|
|
|
|
}
|