27 lines
632 B
C#
27 lines
632 B
C#
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;
|
|
public int MinAccountAgeMinutes;
|
|
public int MinOverallMinutes;
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public sealed class PanicBunkerChangedEvent : EntityEventArgs
|
|
{
|
|
public PanicBunkerStatus Status;
|
|
|
|
public PanicBunkerChangedEvent(PanicBunkerStatus status)
|
|
{
|
|
Status = status;
|
|
}
|
|
}
|