2024-06-09 23:21:28 +02:00
|
|
|
using NodaTime;
|
|
|
|
|
|
|
|
namespace Foxnouns.Backend.Database.Models;
|
|
|
|
|
2024-06-10 16:25:49 +02:00
|
|
|
public class TemporaryKey
|
2024-06-09 23:21:28 +02:00
|
|
|
{
|
|
|
|
public long Id { get; init; }
|
|
|
|
public required string Key { get; init; }
|
|
|
|
public required string Value { get; set; }
|
|
|
|
public Instant Expires { get; init; }
|
|
|
|
}
|