mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-29 12:24:59 +00:00
16 lines
393 B
C#
16 lines
393 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace PepperDash.Essentials.Devices.Common.AudioCodec
|
|
{
|
|
/// <summary>
|
|
/// Represents a MockAcPropertiesConfig
|
|
/// </summary>
|
|
public class MockAcPropertiesConfig
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the PhoneNumber
|
|
/// </summary>
|
|
[JsonProperty("phoneNumber")]
|
|
public string PhoneNumber { get; set; }
|
|
}
|
|
} |