mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-07-02 10:38:16 +00:00
feat(videocodec): add IsCohost to Participant model
Participant exposed IsHost/IsMyself but no co-host role. Several SDKs (e.g. the ZRC SDK behind epi-zoom-room) report a distinct cohost; add an IsCohost flag so codecs can surface the Me/Host/Cohost role the mobile control UI expects. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
a90b5da61b
commit
48e64a291f
1 changed files with 5 additions and 0 deletions
|
|
@ -15,6 +15,11 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec.Interfaces
|
|||
/// </summary>
|
||||
public bool IsHost { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the IsCohost
|
||||
/// </summary>
|
||||
public bool IsCohost { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the IsMyself
|
||||
/// </summary>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue