This repository has been archived on 2026-02-28. You can view files and clone it, but cannot push or open issues or pull requests.
2025-10-05 21:33:50 +02:00

19 lines
457 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Microsoft.EntityFrameworkCore;
namespace Spacebar.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; }
}