Files
tbd-station-14/Content.Server/Database/ServerRoleUnbanDef.cs
ShadowCommander 4825142210 Role bans (#6703)
2022-02-21 23:11:39 +01:00

20 lines
437 B
C#

using Robust.Shared.Network;
namespace Content.Server.Database;
public sealed class ServerRoleUnbanDef
{
public int BanId { get; }
public NetUserId? UnbanningAdmin { get; }
public DateTimeOffset UnbanTime { get; }
public ServerRoleUnbanDef(int banId, NetUserId? unbanningAdmin, DateTimeOffset unbanTime)
{
BanId = banId;
UnbanningAdmin = unbanningAdmin;
UnbanTime = unbanTime;
}
}