possible fix for patron table

This commit is contained in:
Toastie (DCS Team) 2024-11-04 19:22:13 +13:00
parent 090f50b253
commit ed14c8ce7e
Signed by: toastie_t0ast
GPG key ID: 27F3B6855AFD40A4

View file

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