1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-10 23:31:13 -05:00
Files
IW4M-Admin/Plugins/Mute/MuteStateMeta.cs
Amos 34da216f95 Display mute penalties on profile
Expire mute penalties on unmute
2022-10-23 15:19:09 -05:00

19 lines
344 B
C#

using System.Text.Json.Serialization;
namespace 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
}