switch frontend css from bootstrap to bulma

This commit is contained in:
sam 2024-06-09 23:21:28 +02:00
parent a2f001392b
commit 50257d61f8
14 changed files with 150 additions and 71 deletions

View file

@ -1,4 +1,3 @@
using System.Diagnostics;
using Foxnouns.Backend.Database;
using Foxnouns.Backend.Middleware;
using Foxnouns.Backend.Services;

View 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; }
}