1
0

ServerRoleUnbanDef.cs 437 B

12345678910111213141516171819
  1. using Robust.Shared.Network;
  2. namespace Content.Server.Database;
  3. public sealed class ServerRoleUnbanDef
  4. {
  5. public int BanId { get; }
  6. public NetUserId? UnbanningAdmin { get; }
  7. public DateTimeOffset UnbanTime { get; }
  8. public ServerRoleUnbanDef(int banId, NetUserId? unbanningAdmin, DateTimeOffset unbanTime)
  9. {
  10. BanId = banId;
  11. UnbanningAdmin = unbanningAdmin;
  12. UnbanTime = unbanTime;
  13. }
  14. }