using Microsoft.EntityFrameworkCore; using System.ComponentModel.DataAnnotations.Schema; namespace Elwig.Models { [Table("client_parameter"), PrimaryKey("Param")] public class ClientParam { [Column("param")] public string Param { get; set; } [Column("value")] public string? Value { get; set; } } }