16 lines
325 B
C#
16 lines
325 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace MP.Data.DatabaseModels
|
|
{
|
|
public partial class Config
|
|
{
|
|
public string Chiave { get; set; }
|
|
public string Valore { get; set; }
|
|
public string ValoreStd { get; set; }
|
|
public string Note { get; set; }
|
|
}
|
|
}
|