20 lines
650 B
C#
20 lines
650 B
C#
using System.ComponentModel.DataAnnotations.Schema;
|
|
using TecniStamp.Domain.Base;
|
|
|
|
namespace TecniStamp.Domain;
|
|
|
|
public class CommessaPosizione : EntitaBase
|
|
{
|
|
public int Posizione { get; set; }
|
|
public string NumeroDisegno { get; set; }
|
|
public string NumeroArticolo { get; set; }
|
|
public string NumeroFabb { get; set; }
|
|
public string Descrizione { get; set; }
|
|
public string Categoria { get; set; }
|
|
public DateTime DataConsegna { get; set; }
|
|
public DateTime DataTerminePrevisto { get; set; }
|
|
|
|
[ForeignKey(nameof(Commessa))]
|
|
public Guid? CommessaId { get; set; }
|
|
public Commessa Commessa { get; set; }
|
|
} |