Newer
Older
percord / extra / admin-api / Spacebar.Db / Models / Config.cs
@Emma [it/its]@Rory& Emma [it/its]@Rory& on 5 Oct 436 bytes Rewrite access tokens, initial admin api
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Microsoft.EntityFrameworkCore;

namespace Spacebar.Db.Models;

[Table("config")]
public partial class Config
{
    [Key]
    [Column("key", TypeName = "character varying")]
    public string Key { get; set; } = null!;

    [Column("value")]
    public string? Value { get; set; }
}