diff --git a/ChaosBot/Database/Entity/Raffle.cs b/ChaosBot/Database/Entity/Raffle.cs index fc77a43..9cc2e65 100644 --- a/ChaosBot/Database/Entity/Raffle.cs +++ b/ChaosBot/Database/Entity/Raffle.cs @@ -5,6 +5,12 @@ namespace ChaosBot.Database.Entity public int id { get; } public string userId { get; private set; } + public Raffle(int id, string userId) + { + this.id = id; + this.userId = userId; + } + public Raffle(string userId) { this.userId = userId;