mirror of
https://github.com/yawaflua/PL_JusticeBot.git
synced 2025-12-08 19:39:27 +02:00
16 lines
418 B
C#
16 lines
418 B
C#
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using DiscordApp.Types;
|
|
|
|
namespace DiscordApp.Database.Tables
|
|
{
|
|
[Table("Redirects", Schema = "public")]
|
|
public class Redirects
|
|
{
|
|
[Key]
|
|
public string Id { get; set; }
|
|
public string url { get; set; }
|
|
public RedirectType RedirectType { get; set; } = RedirectType.None;
|
|
}
|
|
}
|