30 lines
695 B
C#
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;
|
|
}
|
|
|
|
}
|