2023-10-13 11:56:12 -07:00
|
|
|
|
using Robust.Shared.Serialization;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.Administration.Events;
|
|
|
|
|
|
|
|
|
|
|
|
[Serializable, NetSerializable]
|
|
|
|
|
|
public sealed class PanicBunkerStatus
|
|
|
|
|
|
{
|
|
|
|
|
|
public bool Enabled;
|
|
|
|
|
|
public bool DisableWithAdmins;
|
|
|
|
|
|
public bool EnableWithoutAdmins;
|
|
|
|
|
|
public bool CountDeadminnedAdmins;
|
|
|
|
|
|
public bool ShowReason;
|
2024-06-09 21:45:47 +01:00
|
|
|
|
public int MinAccountAgeMinutes;
|
|
|
|
|
|
public int MinOverallMinutes;
|
2023-10-13 11:56:12 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
[Serializable, NetSerializable]
|
|
|
|
|
|
public sealed class PanicBunkerChangedEvent : EntityEventArgs
|
|
|
|
|
|
{
|
|
|
|
|
|
public PanicBunkerStatus Status;
|
|
|
|
|
|
|
|
|
|
|
|
public PanicBunkerChangedEvent(PanicBunkerStatus status)
|
|
|
|
|
|
{
|
|
|
|
|
|
Status = status;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|