IW4M-Admin/Plugins/Mute/MuteStateMeta.cs

19 lines
362 B
C#
Raw Normal View History

using System.Text.Json.Serialization;
2023-02-11 21:48:31 -05:00
namespace IW4MAdmin.Plugins.Mute;
public class MuteStateMeta
{
public string? Reason { get; set; }
public DateTime? Expiration { get; set; }
public MuteState MuteState { get; set; }
[JsonIgnore] public bool CommandExecuted { get; set; }
}
public enum MuteState
{
Muted,
Unmuting,
Unmuted
}