| 12345678910111213141516171819 |
- 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<SharedServerBan> bans, List<SharedServerRoleBan> roleBans)
- {
- BanListPlayerName = banListPlayerName;
- Bans = bans;
- RoleBans = roleBans;
- }
- public string BanListPlayerName { get; }
- public List<SharedServerBan> Bans { get; }
- public List<SharedServerRoleBan> RoleBans { get; }
- }
|