Add role bans tab to the bans admin window (#20388)
This commit is contained in:
13
Content.Client/Administration/UI/BanList/IBanListLine.cs
Normal file
13
Content.Client/Administration/UI/BanList/IBanListLine.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using Content.Shared.Administration.BanList;
|
||||
using Robust.Client.UserInterface.Controls;
|
||||
|
||||
namespace Content.Client.Administration.UI.BanList;
|
||||
|
||||
public interface IBanListLine<T> where T : SharedServerBan
|
||||
{
|
||||
T Ban { get; }
|
||||
Label Reason { get; }
|
||||
Label BanTime { get; }
|
||||
Label Expires { get; }
|
||||
Label BanningAdmin { get; }
|
||||
}
|
||||
Reference in New Issue
Block a user