using System; using System.Collections.Generic; #nullable disable namespace ChaosBot.Models { public partial class RaffleTable { public int? Id { get; set; } public long? UserId { get; set; } public long? GuildId { get; set; } } }