laatzen/ServiceFwUpdate/Common/FwUpdateSafe/FwUpdateSafe.cs
2023-10-23 17:38:27 +02:00

30 lines
695 B
C#

using System;
namespace Xylem.ServiceFwUpdate.Common.FwUpdateSafe
{
/// <summary>
/// FW update safe
/// </summary>
[Serializable]
public class FwUpdateSafe
{
/// <summary>
/// Software license information
/// </summary>
public FwUpdateSafeInfo SafeInfo;
/// <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;
}
}