18 lines
448 B
C#
18 lines
448 B
C#
using System.Collections.Generic;
|
|
|
|
namespace IOB_UT_NEXT.Objects
|
|
{
|
|
/// <summary>
|
|
/// Elenco oggetti del monitoraggio (DynData, Status) per WPS
|
|
/// </summary>
|
|
public class MonitoredItemsConf
|
|
{
|
|
#region Public Properties
|
|
|
|
public List<DynDataItem> DynData { get; set; }
|
|
public srvData SrvData { get; set; }
|
|
public List<StatusItem> Status { get; set; }
|
|
|
|
#endregion Public Properties
|
|
}
|
|
} |