using System;
using Newtonsoft.Json;
namespace PepperDash.Essentials.Devices.Common.Codec
{
///
/// Represents a DirectoryItem
///
public class DirectoryItem : ICloneable
{
///
/// Clone method
///
public object Clone()
{
return MemberwiseClone();
}
///
/// Gets or sets the FolderId
///
[JsonProperty("folderId")]
public string FolderId { get; set; }
///
/// Gets or sets the Name
///
[JsonProperty("name")]
public string Name { get; set; }
///
/// Gets or sets the ParentFolderId
///
[JsonProperty("parentFolderId")]
public string ParentFolderId { get; set; }
}
}