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