mirror of
https://github.com/yawaflua/PL_JusticeBot.git
synced 2025-12-08 19:39:27 +02:00
20 lines
561 B
C#
20 lines
561 B
C#
using DiscordApp.Enums;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace DiscordApp.Database.Tables
|
|
{
|
|
[Table("Patents", Schema = "public")]
|
|
public class Patents
|
|
{
|
|
public string Employee { get; set; }
|
|
public string Applicant { get; set; }
|
|
public int Date { get; set; }
|
|
[Key]
|
|
public int[] Number { get; set; }
|
|
public Supporter Support { get; set; }
|
|
public string Gender { get; set; }
|
|
public string Name { get; set; }
|
|
|
|
}
|
|
} |