1
0
mirror of https://github.com/bitwarden/server synced 2025-12-16 00:03:54 +00:00

organization search page

This commit is contained in:
Kyle Spearrin
2018-03-21 17:41:14 -04:00
parent cd262e81c8
commit 7475ed7318
16 changed files with 321 additions and 30 deletions

View File

@@ -1,16 +1,9 @@
using System.Collections;
using System.Collections.Generic;
using Bit.Core.Models.Table;
using Bit.Core.Models.Table;
namespace Bit.Admin.Models
{
public class UsersModel
public class UsersModel : PagedModel<User>
{
public List<User> Users { get; set; }
public string Email { get; set; }
public int Page { get; set; }
public int Count { get; set; }
public int? PreviousPage => Page < 2 ? (int?)null : Page - 1;
public int? NextPage => Users.Count < Count ? (int?)null : Page + 1;
}
}