- Chiusure Edit: allineato tasto torna a lista con tasto elimina - Chiusure Delete: allineato tasto torna a lista con tasto elimina - Impianti Delete: allineato tasto torna a lista con tasto elimina - Commesse Delete: allineato tasto torna a lista con tasto elimina
17 lines
452 B
C#
17 lines
452 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace VirtualTask.Models
|
|
{
|
|
public class MagazziniVT
|
|
{
|
|
[Display(Name = "Azienda")]
|
|
public string? Azienda { get; set; }
|
|
[Display(Name = "Cod. Magazzino")]
|
|
[StringLength(5)]
|
|
public string? Mgcodmag { get; set; }
|
|
[Display(Name = "Descrizone")]
|
|
public string? Mgdesmag { get; set; }
|
|
public DateTime? DataObso { get; set; }
|
|
}
|
|
}
|