Update models

This commit is contained in:
2023-04-28 13:01:43 +02:00
parent 351a0b8d57
commit 3f11a498bc
6 changed files with 82 additions and 3 deletions

View File

@ -0,0 +1,13 @@
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; }
}
}