mirror of
https://github.com/yawaflua/PL_JusticeBot.git
synced 2025-12-09 20:09:31 +02:00
15 lines
319 B
C#
15 lines
319 B
C#
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; }
|
|
|
|
}
|
|
}
|