34 lines
870 B
C#
34 lines
870 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.Xml.Linq;
|
|
|
|
namespace VirtualTask.Models
|
|
{
|
|
public class DatiAziendaTable
|
|
{
|
|
[Display(Name = "Azienda")]
|
|
public string? azienda { get; set; }
|
|
|
|
[Required]
|
|
[Display(Name = "Tecnico")]
|
|
public string? tecnico { get; set; }
|
|
|
|
[Required]
|
|
[Display(Name = "Rag. Sociale")]
|
|
public string? ragsoc { get; set; }
|
|
|
|
[Display(Name = "Url")]
|
|
/// <summary>url del logo esposto</summary>
|
|
public string? url_logo { get; set; }
|
|
|
|
[Required]
|
|
[Display(Name = "Logo")]
|
|
/// <summary>logo</summary>
|
|
public byte[]? logo { get; set; }
|
|
|
|
[Required]
|
|
[Display(Name = "Testo Rapportino")]
|
|
/// <summary>testo azienda rapportino</summary>
|
|
public string? testo_buono { get; set; }
|
|
}
|
|
}
|