using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Threading.Tasks; using yaflay.ru.Auth; namespace yaflay.ru.Database.Tables; [Table("ApiKeys", Schema = "public")] public class ApiKey { [Key] public string Key { get; set; } [Required] public ulong DiscordOwnerId { get; set; } [Required] public string Melon { get; set; } public ApiKeyTypes Type { get; set; } }