32 lines
839 B
C#
32 lines
839 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace ApiPolo.Models
|
|
{
|
|
/// <summary></summary>
|
|
public class DatiAzienda
|
|
{
|
|
/// <summary>azienda</summary>
|
|
[Key]
|
|
public string? azienda { get; set; }
|
|
|
|
/// <summary>tecnico</summary>
|
|
[Key]
|
|
public string? tecnico { get; set; }
|
|
|
|
/// <summary>Denominazione</summary>
|
|
public string? ragsoc { get; set; }
|
|
|
|
/// <summary>url del logo esposto</summary>
|
|
public string? url_logo { get; set; }
|
|
|
|
/// <summary>logo</summary>
|
|
//[NotMapped]
|
|
//public IFormFile? logo { get; set; }
|
|
public byte[]? logo { get; set; }
|
|
|
|
/// <summary>testo azienda rapportino</summary>
|
|
public string? testo_buono { get; set; }
|
|
}
|
|
}
|