Files
PL_JusticeBot/Database/Tables/Certificate.cs
2023-11-11 18:08:33 +03:00

21 lines
558 B
C#

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; }
public string DocumentType { get; set; }
}
}