Files
Samuele E. Locatelli e7a1581ba3 Aggiunta altri metodi dati
2023-02-06 23:11:51 +01:00

17 lines
427 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
namespace StockMan.Data.DbModels
{
// <Auto-Generated>
// This is here so CodeMaid doesn't reorganize this document
// </Auto-Generated>
[Table("CountersList")]
public partial class CountersListModel
{
public string Id { get; set; } = null!;
public int NextNum { get; set; }
}
}