a4dc1313fc
- completata review iniziale datamodels - esclusione viste (almeno x ora)
17 lines
422 B
C#
17 lines
422 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 CountersList
|
|
{
|
|
public string Id { get; set; } = null!;
|
|
public int NextNum { get; set; }
|
|
}
|
|
}
|