using System;
namespace Xylem.ServiceFwUpdate.Common.FwUpdateSafe
{
///
/// Cordonel password container
///
[Serializable]
public class PasswordContainer
{
///
/// PCB identifier.
///
public String PcbId;
///
/// Skeleton key
///
public String SkeletonKey;
///
/// Password level 8
///
public String PasswordLvl8;
///
/// Password file encrypted
///
public Byte[] EncryptedPasswordFile;
}
}