using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace ApiPolo.Models { /// public class DatiAzienda { /// azienda [Key] public string? azienda { get; set; } /// tecnico [Key] public string? tecnico { get; set; } /// Denominazione public string? ragsoc { get; set; } /// url del logo esposto public string? url_logo { get; set; } /// logo //[NotMapped] //public IFormFile? logo { get; set; } public byte[]? logo { get; set; } /// testo azienda rapportino public string? testo_buono { get; set; } } }