init
This commit is contained in:
commit
ded4f4db26
43 changed files with 2052 additions and 0 deletions
13
Catalogger.Backend/Database/Models/Watchlist.cs
Normal file
13
Catalogger.Backend/Database/Models/Watchlist.cs
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
using NodaTime;
|
||||
|
||||
namespace Catalogger.Backend.Database.Models;
|
||||
|
||||
public class Watchlist
|
||||
{
|
||||
public required ulong GuildId { get; init; }
|
||||
public required ulong UserId { get; init; }
|
||||
public Instant AddedAt { get; init; }
|
||||
|
||||
public required ulong ModeratorId { get; set; }
|
||||
public required string Reason { get; set; }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue