using Content.Shared.Eui; using Robust.Shared.Serialization; namespace Content.Shared.Administration.BanList; [Serializable, NetSerializable] public sealed class BanListEuiState : EuiStateBase { public BanListEuiState(string banListPlayerName, List bans, List roleBans) { BanListPlayerName = banListPlayerName; Bans = bans; RoleBans = roleBans; } public string BanListPlayerName { get; } public List Bans { get; } public List RoleBans { get; } }