Fax device configuration structure.

/// <summary>
/// FaxDevice Configuration Information
/// </summary>
public class FaxDevice
{
	public int DeviceId { get; set; }
	public string SerialNumber { get; set; }
	public bool Enabled { get; set; }
	public bool SendEnable { get; set; }
	public bool ReceiveEnable { get; set; }
	public int Reporting { get; set; }
	public int SkipLines { get; set; }
	public string LocalId { get; set; }
	public string CallerId { get; set; }
	public string PrinterIp { get; set; }
	public int DeviceType { get; set; }
	public int DeviceGroup { get; set; }
	public int DeviceFlags { get; set; }
	public DateTime? CreatedOn { get; set; }
	public DateTime? RegisteredOn { get; set; }
	public string TimeZone { get; set; }
}