Files
mapo-core/MP.Data/DbModels/Anag/DecNumArticoliModel.cs
T
2026-04-15 17:39:03 +02:00

14 lines
323 B
C#

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;
}
}