laatzen/ServiceFwUpdate/Common/FwUpdateSafe/UpdateContainer.cs

22 lines
515 B
C#

using System;
using System.Collections.Generic;
namespace Xylem.ServiceFwUpdate.Common.FwUpdateSafe
{
/// <summary>
/// Update container
/// </summary>
[Serializable]
public class UpdateContainer
{
/// <summary>
/// Cordonel device information
/// </summary>
public List<CordonelDeviceInfo> CordonelDeviceInfos;
/// <summary>
/// Single Cordonel FW package
/// </summary>
public CordonelFirmware CordonelFwPackage;
}
}