laatzen/ServiceFwUpdate/Common/FwUpdateSafe/FwUpdateSafe.cs
2021-10-01 11:11:04 +02:00

26 lines
567 B
C#

using System;
namespace Xylem.ServiceFwUpdate.Common.FwUpdateSafe
{
/// <summary>
/// FW update safe
/// </summary>
[Serializable]
public class FwUpdateSafe
{
/// <summary>
/// Software license information
/// </summary>
public SoftwareLicense License;
/// <summary>
/// Software as collection of DLLs
/// </summary>
public SoftwareContainer Software;
/// <summary>
/// Update container
/// </summary>
public UpdateContainer Updates;
}
}