Files
gpw_next/GPW.Api/GPW.Data/DBModels/Contatori.cs
T
2021-10-18 15:43:53 +02:00

14 lines
240 B
C#

using System;
using System.Collections.Generic;
#nullable disable
namespace GPW.Data.DBModels
{
public partial class Contatori
{
public string CodContatore { get; set; }
public int? Valore { get; set; }
}
}