30 lines
768 B
C#
30 lines
768 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace ApiPolo.Models
|
|
{
|
|
/// <summary>Azienda collegata all'azienda principale</summary>
|
|
public class AziendaRif
|
|
{
|
|
/// <summary>azienda</summary>
|
|
[Key]
|
|
public string? piazihoc { get; set; }
|
|
|
|
/// <summary>tecnico</summary>
|
|
[Key]
|
|
public string? picodtec { get; set; }
|
|
|
|
/// <summary>tecnico</summary>
|
|
[Key]
|
|
public string? pirifazi { get; set; }
|
|
|
|
/// <summary>Nome azienda collegata</summary>
|
|
public string? pinomede { get; set; }
|
|
|
|
/// <summary>url logo</summary>
|
|
public string? pilogurl { get; set; }
|
|
|
|
/// <summary>Testo rapportino</summary>
|
|
public string? pitextin { get; set; }
|
|
}
|
|
}
|