34 lines
972 B
C#
34 lines
972 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace VirtualTask.Models
|
|
{
|
|
public class AziendaRif
|
|
{
|
|
[Display(Name = "Azienda")]
|
|
/// <summary>azienda</summary>
|
|
public string? piazihoc { get; set; }
|
|
|
|
[Display(Name = "Cod. Tecnico")]
|
|
/// <summary>tecnico</summary>
|
|
public string? picodtec { get; set; }
|
|
|
|
[Display(Name = "tecnico")]
|
|
/// <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; }
|
|
}
|
|
}
|