23 lines
613 B
C#
23 lines
613 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Consulenza.ReportCommon
|
|
{
|
|
public class MappaturaPreliminare
|
|
{
|
|
/// <summary>
|
|
/// Lista di Id dell'immobile catastale per cui è richiesta la scheda di dettaglio
|
|
/// </summary>
|
|
public List<string> IdImmobileCatasto { get; set; }
|
|
|
|
/// <summary>
|
|
/// Lista di Id delle sezioni (Schede) per cui è richiesto il report.
|
|
/// </summary>
|
|
public List<Int32> IdSezione { get; set; }
|
|
public bool ImmobiliareCEUnica { get; set; }
|
|
}
|
|
|
|
}
|