Files
PL_JusticeBot/Database/Tables/Reports.cs

17 lines
387 B
C#

using DiscordApp.Types;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace DiscordApp.Database.Tables
{
[Table("Reports", Schema = "public")]
public class Reports
{
[Key]
public int Id { get; set; }
public string Employee { get; set; }
public ReportTypes type { get; set; }
}
}