mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-26 10:54:59 +00:00
27 lines
587 B
C#
27 lines
587 B
C#
namespace PepperDash.Essentials.Devices.Common.Codec
|
|
{
|
|
/// <summary>
|
|
/// Represents a Call
|
|
/// </summary>
|
|
public class Call
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the Number
|
|
/// </summary>
|
|
public string Number { get; set; }
|
|
/// <summary>
|
|
/// Gets or sets the Protocol
|
|
/// </summary>
|
|
public string Protocol { get; set; }
|
|
/// <summary>
|
|
/// Gets or sets the CallRate
|
|
/// </summary>
|
|
public string CallRate { get; set; }
|
|
/// <summary>
|
|
/// Gets or sets the CallType
|
|
/// </summary>
|
|
public string CallType { get; set; }
|
|
}
|
|
|
|
}
|