23 lines
560 B
C#
23 lines
560 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Xylem.Common.Hardware.WaterMeter.Genesis.GenesisCore
|
|
{
|
|
/// <summary>
|
|
/// Collection of interface information
|
|
/// </summary>
|
|
public class InterfaceInfo
|
|
{
|
|
/// <summary>
|
|
/// The interface version
|
|
/// </summary>
|
|
public String InterfaceVersion { get; set; }
|
|
|
|
/// <summary>
|
|
/// List of supported FW versions by this interface
|
|
/// </summary>
|
|
public List<String> SupportedFwVersions { get; set; }
|
|
|
|
}
|
|
}
|