16 lines
469 B
C#
16 lines
469 B
C#
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace ApiAdHoc_Odoo.Models
|
|
{
|
|
public class ClienteMaxPrezzi
|
|
{
|
|
public string? Azienda { get; set; }
|
|
public string? CoCodCon { get; set; }
|
|
public string? ElCodArt { get; set; }
|
|
public string? Descrizione { get; set; }
|
|
public int? Conteggio_Vendite { get; set; }
|
|
public decimal? Prezzo_Max { get; set; }
|
|
}
|
|
}
|