Files
tbd-station-14/Content.Client/Administration/UI/BanList/IBanListLine.cs
2023-09-22 14:08:28 -07:00

14 lines
340 B
C#

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; }
}