Files
PL_JusticeBot/Database/Tables/Redirects.cs
Дмитрий Шиманский 1c48750d87 also hotfix
2023-11-16 20:04:25 +03:00

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