Newer
Older
percord / extra / admin-api / Models / Spacebar.Models.Db / Models / ConnectionConfig.cs
@Rory& Rory& on 3 Feb 461 bytes Update C# db models
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Microsoft.EntityFrameworkCore;

namespace Spacebar.Models.Db.Models;

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

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