37 lines
1.0 KiB
C#
37 lines
1.0 KiB
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace VirtualTask.Models
|
|
{
|
|
public class AziendaRif
|
|
{
|
|
[Display(Name = "Azienda")]
|
|
[StringLength(5)]
|
|
/// <summary>azienda</summary>
|
|
public string? piazihoc { get; set; }
|
|
|
|
[Display(Name = "Cod. Tecnico")]
|
|
[StringLength(15)]
|
|
/// <summary>tecnico</summary>
|
|
public string? picodtec { get; set; }
|
|
|
|
[Display(Name = "Azienda Rif.")]
|
|
[StringLength(5)]
|
|
/// <summary>tecnico</summary>
|
|
public string? pirifazi { get; set; }
|
|
|
|
[Display(Name = "Nome azienda collegata")]
|
|
[StringLength(50)]
|
|
/// <summary>Nome azienda collegata</summary>
|
|
public string? pinomede { get; set; }
|
|
|
|
[Display(Name = "logo")]
|
|
[StringLength(254)]
|
|
/// <summary>url logo</summary>
|
|
public string? pilogurl { get; set; }
|
|
|
|
[Display(Name = "Testo rapportino")]
|
|
/// <summary>Testo rapportino</summary>
|
|
public string? pitextin { get; set; }
|
|
}
|
|
}
|