chaosbot/ChaosBot/Database/Entity/Raffle.cs

19 lines
374 B
C#

namespace ChaosBot.Database.Entity
{
public class Raffle
{
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;
}
}
}