mirror of
https://github.com/yawaflua/PL_JusticeBot.git
synced 2025-12-10 04:19:31 +02:00
add discord bot
change net6.0 net7.0
This commit is contained in:
20
Database/Tables/Passport.cs
Normal file
20
Database/Tables/Passport.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using DiscordApp.Enums;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace DiscordApp.Database.Tables
|
||||
{
|
||||
[Table("Passport", Schema = "public")]
|
||||
public class Passport
|
||||
{
|
||||
[Key]
|
||||
public int Id { get; set; }
|
||||
public ulong Employee { get; set; }
|
||||
public string Applicant { get; set; }
|
||||
public long Date { get; set; }
|
||||
public Supporter Support { get; set; }
|
||||
public string Gender { get; set; }
|
||||
public string RpName { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user