mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-26 10:54:59 +00:00
27 lines
578 B
C#
27 lines
578 B
C#
using System.Collections.Generic;
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
namespace PepperDash.Essentials.Devices.Common.Codec
|
|
{
|
|
/// <summary>
|
|
/// Represents a DirectoryFolder
|
|
/// </summary>
|
|
public class DirectoryFolder : DirectoryItem
|
|
{
|
|
|
|
/// <summary>
|
|
/// Gets or sets the Contacts
|
|
/// </summary>
|
|
[JsonProperty("contacts")]
|
|
public List<DirectoryContact> Contacts { get; set; }
|
|
|
|
/// <summary>
|
|
/// Constructor for <see cref="DirectoryFolder"/>
|
|
/// </summary>
|
|
public DirectoryFolder()
|
|
{
|
|
Contacts = new List<DirectoryContact>();
|
|
}
|
|
}
|
|
} |