feat(backend): add skeleton discord auth controller

This commit is contained in:
sam 2024-06-10 16:25:49 +02:00
parent 50257d61f8
commit 493a6e4d29
Signed by: sam
GPG key ID: B4EF20DDE721CAA1
4 changed files with 48 additions and 1 deletions

View file

@ -0,0 +1,11 @@
using NodaTime;
namespace Foxnouns.Backend.Database.Models;
public class TemporaryKey
{
public long Id { get; init; }
public required string Key { get; init; }
public required string Value { get; set; }
public Instant Expires { get; init; }
}