mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-12 12:06:58 +00:00
feat(essentials): adds null value handling to MeetingInfo props
This commit is contained in:
parent
5171385b5b
commit
2e5b7cad64
1 changed files with 8 additions and 8 deletions
|
|
@ -24,21 +24,21 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec.Interfaces
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class MeetingInfo
|
public class MeetingInfo
|
||||||
{
|
{
|
||||||
[JsonProperty("id")]
|
[JsonProperty("id", NullValueHandling = NullValueHandling.Ignore)]
|
||||||
public string Id { get; private set; }
|
public string Id { get; private set; }
|
||||||
[JsonProperty("name")]
|
[JsonProperty("name", NullValueHandling = NullValueHandling.Ignore)]
|
||||||
public string Name { get; private set; }
|
public string Name { get; private set; }
|
||||||
[JsonProperty("host")]
|
[JsonProperty("host", NullValueHandling = NullValueHandling.Ignore)]
|
||||||
public string Host { get; private set; }
|
public string Host { get; private set; }
|
||||||
[JsonProperty("password")]
|
[JsonProperty("password", NullValueHandling = NullValueHandling.Ignore)]
|
||||||
public string Password { get; private set; }
|
public string Password { get; private set; }
|
||||||
[JsonProperty("shareStatus")]
|
[JsonProperty("shareStatus", NullValueHandling = NullValueHandling.Ignore)]
|
||||||
public string ShareStatus { get; private set; }
|
public string ShareStatus { get; private set; }
|
||||||
[JsonProperty("isHost")]
|
[JsonProperty("isHost", NullValueHandling = NullValueHandling.Ignore)]
|
||||||
public Boolean IsHost { get; private set; }
|
public Boolean IsHost { get; private set; }
|
||||||
[JsonProperty("isSharingMeeting")]
|
[JsonProperty("isSharingMeeting", NullValueHandling = NullValueHandling.Ignore)]
|
||||||
public Boolean IsSharingMeeting { get; private set; }
|
public Boolean IsSharingMeeting { get; private set; }
|
||||||
[JsonProperty("waitingForHost")]
|
[JsonProperty("waitingForHost", NullValueHandling = NullValueHandling.Ignore)]
|
||||||
public Boolean WaitingForHost { get; private set; }
|
public Boolean WaitingForHost { get; private set; }
|
||||||
|
|
||||||
public MeetingInfo(string id, string name, string host, string password, string shareStatus, bool isHost, bool isSharingMeeting, bool waitingForHost)
|
public MeetingInfo(string id, string name, string host, string password, string shareStatus, bool isHost, bool isSharingMeeting, bool waitingForHost)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue