using System.Collections.Generic; using Newtonsoft.Json; namespace PepperDash.Essentials.Devices.Common.Codec { /// /// Represents a DirectoryFolder /// public class DirectoryFolder : DirectoryItem { /// /// Gets or sets the Contacts /// [JsonProperty("contacts")] public List Contacts { get; set; } /// /// Constructor for /// public DirectoryFolder() { Contacts = new List(); } } }