using System.Collections.Generic;
using Newtonsoft.Json;
namespace PepperDash.Essentials.Devices.Common.Codec
{
///
/// Represents a DirectoryContact
///
public class DirectoryContact : DirectoryItem
{
///
/// Gets or sets the ContactId
///
[JsonProperty("contactId")]
public string ContactId { get; set; }
///
/// Gets or sets the Title
///
[JsonProperty("title")]
public string Title { get; set; }
///
/// Gets or sets the ContactMethods
///
[JsonProperty("contactMethods")]
public List ContactMethods { get; set; }
///
/// Constructor for
///
public DirectoryContact()
{
ContactMethods = new List();
}
}
}