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; } } }