using System; using System.Collections.Generic; using System.Linq; using System.Text; using Crestron.SimplSharp; using Newtonsoft.Json; namespace PepperDash.Essentials.Devices.Common.AudioCodec { /// /// Represents a MockAcPropertiesConfig /// public class MockAcPropertiesConfig { [JsonProperty("phoneNumber")] /// /// Gets or sets the PhoneNumber /// public string PhoneNumber { get; set; } } }