mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-15 20:54:55 +00:00
feat:(Essentials) Add IsSharingMeeting property
This commit is contained in:
@@ -36,8 +36,10 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec.Interfaces
|
|||||||
public string ShareStatus { get; private set; }
|
public string ShareStatus { get; private set; }
|
||||||
[JsonProperty("isHost")]
|
[JsonProperty("isHost")]
|
||||||
public Boolean IsHost { get; private set; }
|
public Boolean IsHost { get; private set; }
|
||||||
|
[JsonProperty("isSharingMeeting")]
|
||||||
|
public Boolean IsSharingMeeting { get; private set; }
|
||||||
|
|
||||||
public MeetingInfo(string id, string name, string host, string password, string shareStatus, bool isHost)
|
public MeetingInfo(string id, string name, string host, string password, string shareStatus, bool isHost, bool isSharingMeeting)
|
||||||
{
|
{
|
||||||
Id = id;
|
Id = id;
|
||||||
Name = name;
|
Name = name;
|
||||||
@@ -45,6 +47,7 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec.Interfaces
|
|||||||
Password = password;
|
Password = password;
|
||||||
ShareStatus = shareStatus;
|
ShareStatus = shareStatus;
|
||||||
IsHost = isHost;
|
IsHost = isHost;
|
||||||
|
IsSharingMeeting = isSharingMeeting;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user