16 lines
373 B
C#
16 lines
373 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Consulenza.ReportArchive.Entity
|
|
{
|
|
public class Cliente
|
|
{
|
|
public long ChiaveClientePb { get; set; }
|
|
public string CodiceContratto { get; set; }
|
|
public long ChiaveProposta { get; set; }
|
|
public string PropostaBase { get; set; }
|
|
}
|
|
}
|