switch frontend css from bootstrap to bulma
This commit is contained in:
parent
a2f001392b
commit
50257d61f8
14 changed files with 150 additions and 71 deletions
|
@ -1,4 +1,3 @@
|
|||
using System.Diagnostics;
|
||||
using Foxnouns.Backend.Database;
|
||||
using Foxnouns.Backend.Middleware;
|
||||
using Foxnouns.Backend.Services;
|
||||
|
|
11
Foxnouns.Backend/Database/Models/Cache.cs
Normal file
11
Foxnouns.Backend/Database/Models/Cache.cs
Normal file
|
@ -0,0 +1,11 @@
|
|||
using NodaTime;
|
||||
|
||||
namespace Foxnouns.Backend.Database.Models;
|
||||
|
||||
public class Cache
|
||||
{
|
||||
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