Files
Essentials/src/PepperDash.Essentials.Devices.Common/AudioCodec/MockAC/MockAcPropertiesConfig.cs
2025-10-09 13:18:36 -05:00

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; }
}
}