mirror of
https://github.com/yawaflua/PL_JusticeBot.git
synced 2026-02-04 02:24:14 +02:00
add base on map registration
This commit is contained in:
14
Database/Tables/Redirects.cs
Normal file
14
Database/Tables/Redirects.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
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; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user