Skip to content

Commit

Permalink
Add OperatingSystem and OperatingSystemVersion to the DashboardPartic…
Browse files Browse the repository at this point in the history
…ipant model class.

Resolves #355
  • Loading branch information
Jericho committed Jul 23, 2024
1 parent e7cd2f1 commit 9d2a17a
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Source/ZoomNet/Models/DashboardParticipant.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,18 @@ public class DashboardParticipant
[JsonPropertyName("device")]
public ParticipantDevice[] Devices { get; set; }

/// <summary>
/// Gets or sets the device operation system.
/// </summary>
[JsonPropertyName("os")]
public string OperatingSystem { get; set; }

/// <summary>
/// Gets or sets the device operation system version.
/// </summary>
[JsonPropertyName("os_version")]
public string OperatingSystemVersion { get; set; }

/// <summary>
/// Gets or sets the participant's IP address.
/// </summary>
Expand Down

0 comments on commit 9d2a17a

Please sign in to comment.