VirtualTask/Models/DatiAziendaTable.cs

38 lines
953 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 = "Ragione 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 = "Intestazione")]
/// <summary>testo azienda rapportino</summary>
public string? testo_buono { get; set; }
/// <summary>logo</summary>
public IFormFile? logo2 { get; set; }
}
}