-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
4 changed files
with
98 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
using Newtonsoft.Json; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Text; | ||
|
||
namespace WifiPlug.Api.Entities | ||
{ | ||
/// <summary> | ||
/// Represents the result of a group item scan. | ||
/// </summary> | ||
public class GroupItemResultsEntity | ||
{ | ||
/// <summary> | ||
/// Gets or sets the items in the results. | ||
/// </summary> | ||
[JsonProperty(PropertyName = "items")] | ||
public GroupItemEntity[] Items { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the next cursor. | ||
/// </summary> | ||
[JsonProperty(PropertyName = "cursor")] | ||
public string Cursor { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the total number of group items. | ||
/// </summary> | ||
[JsonProperty(PropertyName = "total_item_count")] | ||
public int TotalItems { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters