namespace PepperDash.Essentials.Devices.Common.Codec { /// /// Represents a Call /// public class Call { /// /// Gets or sets the Number /// public string Number { get; set; } /// /// Gets or sets the Protocol /// public string Protocol { get; set; } /// /// Gets or sets the CallRate /// public string CallRate { get; set; } /// /// Gets or sets the CallType /// public string CallType { get; set; } } }