mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-08-31 19:08:29 +00:00
Lots of changes
* Copied join map from Mobile Control * Started implementing for JoinMapBase * Made some changes and improvements to ZoomRoom for handling Directory stuff
This commit is contained in:
parent
5d5652907b
commit
832060e8ad
7 changed files with 165 additions and 103 deletions
|
|
@ -40,9 +40,15 @@ namespace PepperDash.Essentials.Devices.Common.Codec
|
|||
/// <summary>
|
||||
/// Tracks the directory browse history when browsing beyond the root directory
|
||||
/// </summary>
|
||||
[Obsolete("Please use the Stack-based history instead")]
|
||||
List<CodecDirectory> DirectoryBrowseHistory { get; }
|
||||
}
|
||||
|
||||
public interface IHasDirectoryHistoryStack : IHasDirectory
|
||||
{
|
||||
Stack<CodecDirectory> DirectoryBrowseHistoryStack { get; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
|
|
@ -147,6 +153,9 @@ namespace PepperDash.Essentials.Devices.Common.Codec
|
|||
|
||||
[JsonProperty("name")]
|
||||
public string Name { get; set; }
|
||||
|
||||
[JsonProperty("parentFolderId")]
|
||||
public string ParentFolderId { get; set; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
@ -157,8 +166,6 @@ namespace PepperDash.Essentials.Devices.Common.Codec
|
|||
[JsonProperty("contacts")]
|
||||
public List<DirectoryContact> Contacts { get; set; }
|
||||
|
||||
[JsonProperty("parentFolderId")]
|
||||
public string ParentFolderId { get; set; }
|
||||
|
||||
public DirectoryFolder()
|
||||
{
|
||||
|
|
@ -177,6 +184,8 @@ namespace PepperDash.Essentials.Devices.Common.Codec
|
|||
[JsonProperty("title")]
|
||||
public string Title { get; set; }
|
||||
|
||||
|
||||
|
||||
[JsonProperty("contactMethods")]
|
||||
public List<ContactMethod> ContactMethods { get; set; }
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue