Fax account structure.
/// <summary>
/// FaxAccount class.
/// </summary>
public class FaxAccount
{
public string Account { get; set; }
public int AccountId { get; set; }
public int Country { get; set; }
public string Name { get; set; }
public bool Enabled { get; set; }
public int Ports { get; set; }
public int Numbers { get; set; }
public string[] Features { get; set; }
}