Added new ddos protection

This commit is contained in:
Marcel Baumgartner
2023-07-24 00:23:29 +02:00
parent 512a989609
commit 2cf2b77090
19 changed files with 1575 additions and 136 deletions

View File

@@ -0,0 +1,10 @@
namespace Moonlight.App.Database.Entities;
public class BlocklistIp
{
public int Id { get; set; }
public string Ip { get; set; } = "";
public DateTime ExpiresAt { get; set; }
public long Packets { get; set; }
public DateTime CreatedAt { get; set; }
}