mirror of
https://github.com/yawaflua/PL_JusticeBot.git
synced 2025-12-09 20:09:31 +02:00
updated
This commit is contained in:
20
Database/Tables/Certificate.cs
Normal file
20
Database/Tables/Certificate.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace DiscordApp.Database.Tables
|
||||
{
|
||||
|
||||
[Table("Certificate", Schema = "public")]
|
||||
public class Certificate
|
||||
{
|
||||
[Key]
|
||||
public int Id { get; set; }
|
||||
public string Employee { get; set; }
|
||||
public Passport passport { get; set; }
|
||||
public DateOnly Date { get; set; }
|
||||
public string Text { get; set; }
|
||||
public int DocumentId { get; set; }
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user