using System.ComponentModel.DataAnnotations;
namespace VirtualTask.Models
{
public class DatiAzienda
{
/// azienda
public string? azienda { get; set; }
[Display(Name = "Tecnico")]
/// tecnico
public string? tecnico { get; set; }
[Display(Name = "Ragione Sociale")]
/// Denominazione
public string? ragsoc { get; set; }
/// url del logo esposto
public string? url_logo { get; set; }
[Display(Name = "Logo")]
/// logo
public IFormFile? logo { get; set; }
[Display(Name = "Intestazione")]
/// testo azienda rapportino
public string? testo_buono { get; set; }
}
}