possible fix for patron table
This commit is contained in:
parent
090f50b253
commit
ed14c8ce7e
1 changed files with 3 additions and 0 deletions
|
@ -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; }
|
||||
|
|
Loading…
Reference in a new issue