mirror of
https://github.com/yawaflua/PL_JusticeBot.git
synced 2025-12-15 18:06:27 +02:00
добавил патенты, верификацию, сделал паспорта, ип ооо
This commit is contained in:
16
Database/Tables/Reports.cs
Normal file
16
Database/Tables/Reports.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
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; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user