/// <summary> /// Initializes a new instance of the <see cref="UserSearchResults" /> class. /// </summary> /// <param name="Count">The total number of users which matched the search criteria..</param> /// <param name="Skip">The number of skipped results..</param> /// <param name="Limit">The number of returned results..</param> /// <param name="SearchQuery">The search query that produced this result..</param> /// <param name="Users">A list of users which matched by the search criteria..</param> public UserSearchResults(long?Count = default(long?), long?Skip = default(long?), long?Limit = default(long?), UserSearchQuery SearchQuery = default(UserSearchQuery), List <UserV2> Users = default(List <UserV2>)) { this.Count = Count; this.Skip = Skip; this.Limit = Limit; this.SearchQuery = SearchQuery; this.Users = Users; }
/// <summary> /// Initializes a new instance of the <see cref="UserSearchResults" /> class. /// </summary> /// <param name="Count">The total number of users which matched the search criteria..</param> /// <param name="Skip">The number of skipped results..</param> /// <param name="Limit">The number of returned results..</param> /// <param name="SearchQuery">The search query that produced this result..</param> /// <param name="Users">A list of users which matched by the search criteria..</param> public UserSearchResults(long?Count = null, long?Skip = null, long?Limit = null, UserSearchQuery SearchQuery = null, List <UserV2> Users = null) { this.Count = Count; this.Skip = Skip; this.Limit = Limit; this.SearchQuery = SearchQuery; this.Users = Users; }