fix: possible fix for patron table

This commit is contained in:
Kwoth
2024-11-03 08:31:23 +00:00
parent b6b6b4e19e
commit 2b301c0aab

View File

@@ -1,8 +1,11 @@
#nullable disable
using System.ComponentModel.DataAnnotations;
namespace NadekoBot.Db.Models;
public class PatronUser
{
[Key]
public int Id { get; set; }
public string UniquePlatformUserId { get; set; }
public ulong UserId { get; set; }