11 lines
261 B
C#
11 lines
261 B
C#
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; }
|
|
}
|