19 lines
504 B
C#
19 lines
504 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Consulenza.ReportCommon
|
|
{
|
|
public class MonitoraggioImmobiliare
|
|
{
|
|
/// <summary>
|
|
/// Lista di Id dell'immobile catastale per cui è richiesto il report.
|
|
/// </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; }
|
|
}
|
|
}
|