2023-09-22 14:08:28 -07:00
|
|
|
|
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; }
|
2023-04-30 14:27:27 +06:00
|
|
|
|
Label ServerName { get; }
|
2023-09-22 14:08:28 -07:00
|
|
|
|
}
|