14 lines
329 B
C#
14 lines
329 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace MP.Data.DbModels.Anag
|
|
{
|
|
[Table("DecNumArticoli")]
|
|
public class DecNumArticoliModel
|
|
{
|
|
[Key]
|
|
public string CodArticolo { get; set; } = "";
|
|
public int NumART { get; set; } = 0;
|
|
}
|
|
}
|