feat(backend): add skeleton discord auth controller
This commit is contained in:
parent
50257d61f8
commit
493a6e4d29
4 changed files with 48 additions and 1 deletions
11
Foxnouns.Backend/Database/Models/TemporaryKey.cs
Normal file
11
Foxnouns.Backend/Database/Models/TemporaryKey.cs
Normal 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; }
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue