mirror of
https://github.com/yawaflua/PL_JusticeBot.git
synced 2025-12-10 04:19:31 +02:00
добавил патенты, верификацию, сделал паспорта, ип ооо
This commit is contained in:
22
Database/Tables/ArtsPatents.cs
Normal file
22
Database/Tables/ArtsPatents.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using DiscordApp.Enums;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace DiscordApp.Database.Tables
|
||||
{
|
||||
[Table("ArtsPatent", Schema = "public")]
|
||||
public class ArtsPatents
|
||||
{
|
||||
[Key]
|
||||
public int Id { get; set; }
|
||||
public string Employee { get; set; }
|
||||
public Passport passport { get; set; }
|
||||
public long Date { get; set; }
|
||||
public int[] Number { get; set; }
|
||||
public string Name { get; set; }
|
||||
public string Size { get; set; }
|
||||
public bool isAllowedToResell { get; set; }
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user