Files
PL_JusticeBot/Database/Tables/Passport.cs
Дмитрий Шиманский 9a8a4cad5d add discord bot
change net6.0 net7.0
2023-10-26 11:35:42 +03:00

20 lines
559 B
C#

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