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:
anthony-lopez-pd 2026-06-05 16:02:23 -04:00
parent a90b5da61b
commit 48e64a291f

View file

@ -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>