Aggiunta model x DecNumArt da gestire x IOC

This commit is contained in:
Samuele Locatelli
2026-04-15 17:39:03 +02:00
parent 37a73ee2fe
commit 0e4efcd209
2 changed files with 16 additions and 0 deletions
@@ -0,0 +1,13 @@
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace MP.Data.DbModels.Anag
{
[Table("AlarmLog")]
public class DecNumArticoliModel
{
[Key]
public string CodArticolo { get; set; } = "";
public int NumART { get; set; } = 0;
}
}