15 lines
274 B
C#
15 lines
274 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace GPW.Data.DBModels
|
|
{
|
|
public partial class Config
|
|
{
|
|
public string Chiave { get; set; }
|
|
public string Valore { get; set; }
|
|
public string Note { get; set; }
|
|
}
|
|
}
|