Skip to content

Commit

Permalink
Meeting.Status should be nullable
Browse files Browse the repository at this point in the history
Resolves #100
  • Loading branch information
Jericho committed Feb 18, 2021
1 parent d59a38f commit 0fd698e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/ZoomNet/Models/Meeting.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public abstract class Meeting
/// The status.
/// </value>
[JsonProperty("status", NullValueHandling = NullValueHandling.Ignore)]
public MeetingStatus Status { get; set; }
public MeetingStatus? Status { get; set; }

/// <summary>
/// Gets or sets the meeting description.
Expand Down

0 comments on commit 0fd698e

Please sign in to comment.