Files
elwig/Elwig/Models/ClientParam.cs
2023-04-28 13:01:43 +02:00

14 lines
345 B
C#

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; }
}
}