using System.ComponentModel.DataAnnotations.Schema; using System.ComponentModel.DataAnnotations; namespace DiscordApp.Database.Tables { [Table("Redirects", Schema = "public")] public class Redirects { [Key] public string Id { get; set; } public string url { get; set; } } }