Fax route information structure with encryption options.

/// <summary>
/// Encryption settings.
/// </summary>
public class EncryptionParams
{
    public bool Enabled { get; set; }
    public bool Required { get; set; }
    public byte[] PublicKey { get; set; }
}

/// <summary>
/// Routeinfo class (used for lookup).
/// </summary>
public class RouteInfo
{
    public string Route { get; set; }
    public string[] AcceptedFormats { get; set; }
    public string[] Resolutions { get; set; }
    public string[] PageWidths { get; set; }
    public EncryptionParams Encryption { get; set; }
    public string Name { get; set; }
}