1
0

ServerUnbanDef.cs 479 B

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